Skip to content

Commit

Permalink
Use bash shell on Windows CI
Browse files Browse the repository at this point in the history
  • Loading branch information
fschutt committed Sep 26, 2022
1 parent 449a77f commit bb9b349
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/test-sys.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -235,12 +235,14 @@ jobs:
CARGO_TARGET: --target ${{ matrix.target }}
- name: Test
if: matrix.run_test && matrix.os == 'windows-2019'
shell: bash
run: |
make build-capi && make package-capi && export WASMER_DIR=`pwd`/package && make test
- name: Test C API
if: matrix.run_test_capi && matrix.os == 'windows-2019'
shell: bash
run: |
make test-capi
export WASMER_DIR=`pwd`/package && make test-capi
- name: Build Doc
if: matrix.run_build_docs
run: |
Expand Down

0 comments on commit bb9b349

Please sign in to comment.