Skip to content

Commit

Permalink
CI: Fix artifact names in kbs e2e test
Browse files Browse the repository at this point in the history
With the latest bump in the upload/download github actions, there has
been a change we need to accomodate. we need to specify the artifacts in
a single workflow run:

https://github.com/actions/upload-artifact?tab=readme-ov-file#breaking-changes

Signed-off-by: Magnus Kulke <[email protected]>
  • Loading branch information
mkulke committed Oct 2, 2024
1 parent cdf6cb3 commit 37a0250
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/kbs-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,16 +61,19 @@ jobs:
with:
path: test.tar.gz
overwrite: true
name: artifacts-${{ inputs.tee }}

e2e-test:
needs: build-binaries
runs-on: ${{ fromJSON(inputs.runs-on) }}
steps:
- name: Download artifacts
uses: actions/download-artifact@v4
with:
name: artifacts-${{ inputs.tee }}

- name: Extract test folder
run: tar xzf ./artifact/test.tar.gz
run: tar xzf ./test.tar.gz

- name: Set up SGX/TDX certificates cache
uses: actions/cache@v4
Expand Down

0 comments on commit 37a0250

Please sign in to comment.