Skip to content

Commit

Permalink
Merge #3319
Browse files Browse the repository at this point in the history
3319: Disable 'Test integration CLI' on CI for the Windows platform as it's not working at all r=ptitSeb a=ptitSeb

# Description
Disable 'Test integration CLI' on CI for the Windows platform as it's not working at all
To be re-enabled later when it's fixed for this platform


Co-authored-by: ptitSeb <[email protected]>
  • Loading branch information
bors[bot] and ptitSeb authored Nov 17, 2022
2 parents b424c9e + 5ad68a5 commit bca8998
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions .github/workflows/test-sys.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -211,17 +211,18 @@ jobs:
TARGET_DIR: target/${{ matrix.target }}/release
CARGO_TARGET: --target ${{ matrix.target }}
WAPM_DEV_TOKEN: ${{ secrets.WAPM_DEV_TOKEN }}
- name: Test integration CLI
if: matrix.run_test && matrix.os == 'windows-2019'
shell: bash
run: |
make && make build-wasmer && make build-capi && make package-capi && make package
export WASMER_DIR=`pwd`/package
make test-integration-cli
env:
TARGET: x86_64-pc-windows-msvc
TARGET_DIR: target/x86_64-pc-windows-msvc/release
CARGO_TARGET: --target x86_64-pc-windows-msvc

#- name: Test integration CLI
# if: matrix.run_test && matrix.os == 'windows-2019'
# shell: bash
# run: |
# make && make build-wasmer && make build-capi && make package-capi && make package
# export WASMER_DIR=`pwd`/package
# make test-integration-cli
# env:
# TARGET: x86_64-pc-windows-msvc
# TARGET_DIR: target/x86_64-pc-windows-msvc/release
# CARGO_TARGET: --target x86_64-pc-windows-msvc
- name: Test
if: matrix.run_test && matrix.os != 'windows-2019'
run: |
Expand Down

0 comments on commit bca8998

Please sign in to comment.