-
-
Notifications
You must be signed in to change notification settings - Fork 174
chore(ci): upload test functionality artifacts #636
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -35,7 +35,7 @@ env: | |
| jobs: | ||
| functionality-810: | ||
| name: Functionality 8.1.0 | ||
| runs-on: ubuntu-22.04 | ||
| runs-on: ubuntu-24.04 | ||
| steps: | ||
| - uses: actions/checkout@v6 | ||
| - name: Set test args | ||
|
|
@@ -52,10 +52,17 @@ jobs: | |
| run: | | ||
| cd utilities/container_benchmarking | ||
| ./test_functionality.sh 8.1.0 ${{ steps.args.outputs.args }} | ||
| - name: Upload test results | ||
| if: always() | ||
| uses: actions/upload-artifact@v7 | ||
| with: | ||
| name: test-results-810 | ||
| path: utilities/container_benchmarking/test_results/ | ||
| retention-days: 7 | ||
|
|
||
| functionality-binary: | ||
| name: Functionality binary | ||
| runs-on: ubuntu-22.04 | ||
| runs-on: ubuntu-24.04 | ||
| steps: | ||
| - uses: actions/checkout@v6 | ||
| - name: Set test args | ||
|
|
@@ -72,10 +79,17 @@ jobs: | |
| run: | | ||
| cd utilities/container_benchmarking | ||
| ./test_functionality.sh binary ${{ steps.args.outputs.args }} | ||
| - name: Upload test results | ||
| if: always() | ||
| uses: actions/upload-artifact@v7 | ||
| with: | ||
| name: test-results-binary | ||
| path: utilities/container_benchmarking/test_results/ | ||
| retention-days: 7 | ||
|
Comment on lines
+82
to
+88
|
||
|
|
||
| functionality-flex: | ||
| name: Functionality flex | ||
| runs-on: ubuntu-22.04 | ||
| runs-on: ubuntu-24.04 | ||
| steps: | ||
| - uses: actions/checkout@v6 | ||
| - name: Set test args | ||
|
|
@@ -92,3 +106,10 @@ jobs: | |
| run: | | ||
| cd utilities/container_benchmarking | ||
| ./test_functionality.sh flex ${{ steps.args.outputs.args }} | ||
| - name: Upload test results | ||
| if: always() | ||
| uses: actions/upload-artifact@v7 | ||
| with: | ||
| name: test-results-flex | ||
| path: utilities/container_benchmarking/test_results/ | ||
| retention-days: 7 | ||
|
Comment on lines
+109
to
+115
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This workflow uses actions/upload-artifact@v4, but the repo’s other workflows are already on actions/upload-artifact@v7 (e.g. build-810.yml). Consider bumping to v7 here as well to stay consistent and pick up the latest fixes/features.