-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #45 from max-pfeiffer/feature/process_improvements
Feature/process improvements
- Loading branch information
Showing
4 changed files
with
20 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,7 +46,7 @@ jobs: | |
- name: Checkout Repository | ||
uses: actions/checkout@v4 | ||
- name: Expose GitHub Runtime | ||
uses: crazy-max/ghaction-github-runtime@v2 | ||
uses: crazy-max/ghaction-github-runtime@v3 | ||
- name: Setup Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
|
@@ -95,7 +95,7 @@ jobs: | |
- name: Checkout Repository | ||
uses: actions/checkout@v4 | ||
- name: Expose GitHub Runtime | ||
uses: crazy-max/ghaction-github-runtime@v2 | ||
uses: crazy-max/ghaction-github-runtime@v3 | ||
- name: Setup Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
|
@@ -137,11 +137,17 @@ jobs: | |
- run-publish-image-tests | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v4 | ||
- name: Download coverage reports from artifactory | ||
uses: actions/download-artifact@v3 | ||
- name: Compile the relevant reports | ||
run: | | ||
ls -sal | ||
find . -name "*.xml" -exec cp {} . \; | ||
ls -sal | ||
cat build_image_coverage_report.xml | ||
cat publish_image_coverage_report.xml | ||
- name: Upload coverage to Codecov | ||
uses: codecov/codecov-action@v3 | ||
with: | ||
|
@@ -165,7 +171,7 @@ jobs: | |
- name: Checkout Repository | ||
uses: actions/checkout@v4 | ||
- name: Expose GitHub Runtime | ||
uses: crazy-max/ghaction-github-runtime@v2 | ||
uses: crazy-max/ghaction-github-runtime@v3 | ||
- name: Get Git Commit Tag Name | ||
uses: olegtarasov/[email protected] | ||
- name: Setup Python | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
PLATFORMS: list[str] = ["linux/amd64", "linux/arm64/v8"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters