Skip to content

Commit

Permalink
[CI.yaml] Try continue-on-error and "conclusion" logic.
Browse files Browse the repository at this point in the history
  • Loading branch information
lgarron committed Aug 28, 2023
1 parent 7fd8004 commit 8c6c13a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,11 @@ jobs:
node-version: 19
- uses: actions/checkout@v2
- uses: wasmerio/setup-wasmer@v2
continue-on-error: true
id: wasmer
# Fallback workaround for https://github.com/wasmerio/wasmer/issues/4183
# https://github.com/wasmerio/wasmer-install#install-via-package-manager
- if: failure()
- if: ${{ !cancelled() }} && steps.wasmer.conclusion == 'failure'
run: cargo install wasmer-cli --features singlepass,cranelift # add --features=llvm for LLVM compilation support
- run: make emsdk
- run: make build/wasm-test/twsearch-test.wasm
Expand Down

0 comments on commit 8c6c13a

Please sign in to comment.