Skip to content

Commit

Permalink
Merge pull request #19322 from AttilaVamos/HPCC-33049-fix-9.8.x
Browse files Browse the repository at this point in the history
HPCC-33049 Fix artifact download version Bundles test GH Actions

Reviewed-by: Gavin Halliday <[email protected]>
Merged-by: Gavin Halliday <[email protected]>
  • Loading branch information
ghalliday authored Dec 3, 2024
2 parents 128b9d0 + 6e37c54 commit 130a3a9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/bundleTest-thor.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ The steps in the workflow run on the specified operating system, with Ubuntu-22.
This step enables us to download the ready-to-install HPCC Platform's artifact built on the latest commit.
```yaml
- name: Download Package
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ inputs.asset-name }}
path: ${{ inputs.asset-name }}
Expand Down Expand Up @@ -348,11 +348,12 @@ If any logs, ZAP reports, or .trace files are generated, they are uploaded as ar
```yaml
- name: ml-thor-test-logs-artifact
if: ${{ failure() || cancelled() || env.uploadArtifact == 'true' }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ inputs.asset-name }}-bundle-test-logs
path: |
/home/runner/HPCCSystems-regression/log/*
/home/runner/HPCCSystems-regression/zap/*
if-no-files-found: ignore
```
```

4 changes: 2 additions & 2 deletions .github/workflows/bundleTest-thor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
sudo rm -rf /usr/local/lib/android
- name: Download Package
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ inputs.asset-name }}
path: ${{ inputs.asset-name }}
Expand Down Expand Up @@ -268,7 +268,7 @@ jobs:
- name: ml-thor-test-logs-artifact
if: ${{ failure() || cancelled() || env.uploadArtifact == 'true' }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ inputs.asset-name }}-bundle-test-logs
path: |
Expand Down

0 comments on commit 130a3a9

Please sign in to comment.