tests,gpu-compute: Fix artifact upload for GPU tests

actions/upload-artifact@v4 does not understand periods in artifact
names.

Change-Id: Ia272f9dcf9cb2213fb78b1814007921232395914
This commit is contained in:
Bobby R. Bruce
2024-08-22 04:28:19 -07:00
parent 868e287e71
commit 0a188850fe
2 changed files with 2 additions and 2 deletions

View File

@@ -100,7 +100,7 @@ jobs:
if: success() || failure()
uses: actions/upload-artifact@v4
with:
name: gpu_COMMIT.${{github.sha}}_RUN.${{github.run_id}}_ATTEMPT.${{github.run_attempt}}
name: gpu_tests_${{github.sha}}_RUN_${{github.run_id}}_ATTEMPT_${{github.run_attempt}}
path: tests/testing-results
retention-days: 7

View File

@@ -80,7 +80,7 @@ jobs:
if: success() || failure()
uses: actions/upload-artifact@v4.0.0
with:
name: gpu_COMMIT.${{github.sha}}_RUN.${{github.run_id}}_ATTEMPT.${{github.run_attempt}}
name: gpu_tests_${{github.sha}}_RUN_${{github.run_id}}_ATTEMPT_${{github.run_attempt}}
path: tests/testing-results
retention-days: 7