Skip to content

Commit

Permalink
Merge pull request #193 from adoptium/tellison-patch-1
Browse files Browse the repository at this point in the history
Update example dependency suggestions
  • Loading branch information
smlambert authored Apr 24, 2024
2 parents e0713e6 + 4ec9d7b commit cc11052
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions example_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
num_machines: 4 # number of machines we want to run

- name: Archive parallelList - ${{ matrix.suite }}
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.suite }}-parallelList.mk
path: ${{ github.workspace }}/aqa-tests/TKG/parallelList.mk
Expand All @@ -62,7 +62,7 @@ jobs:
steps:
# download the paralleList to the current working directory
- name: Download parallelList - ${{ matrix.suite }}
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: ${{ matrix.suite }}-parallelList.mk
path: ./
Expand All @@ -76,7 +76,7 @@ jobs:
build_list: ${{ matrix.suite }}
target : -f parallelList.mk ${{ matrix.test_list }}

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
if: always() # Always run this step (even if the tests failed)
with:
name: test_output_${{ matrix.suite }}_${{ matrix.test_list }}
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
build_list: ${{ matrix.suite }}
target: _${{ matrix.target }}.${{ matrix.suite }}

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
if: always() # Always run this step (even if the tests failed)
with:
name: test_output
Expand Down

0 comments on commit cc11052

Please sign in to comment.