Skip to content

Commit

Permalink
ci: fix artifact download path
Browse files Browse the repository at this point in the history
Signed-off-by: Roman Volosatovs <[email protected]>
  • Loading branch information
rvolosatovs committed Sep 18, 2024
1 parent f8906fc commit a9c4a2c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/west.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,11 @@ jobs:
- uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
with:
name: passthrough
path: lib/passthrough.wasm
path: lib
- uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
with:
name: west-${{ matrix.config.target }}
path: lib/${{ matrix.config.lib }}/libwest.a
- run: mv lib/libwest_sys.a "lib/${{ matrix.config.lib }}/libwest.a"
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
Expand All @@ -101,6 +101,7 @@ jobs:
- run: go generate ./tests/go/...
- run: go test ./...
env:
GOGC: 1
WEST_LOG: trace
continue-on-error: ${{ matrix.config.os == 'ubuntu-latest' || matrix.config.os == 'windows-latest' }} # TODO: remove
- run: git diff --exit-code
Expand Down Expand Up @@ -128,6 +129,7 @@ jobs:
- run: go generate -tags=dev ./...
- run: go test -tags=dev ./...
env:
GOGC: 1
WEST_LOG: trace
continue-on-error: ${{ matrix.os == 'ubuntu-latest' || matrix.os == 'windows-latest' }} # TODO: remove
- run: git diff --exit-code
Expand Down

0 comments on commit a9c4a2c

Please sign in to comment.