Skip to content

Commit

Permalink
Merge pull request #1725 from demergent-labs/fix_test_yml
Browse files Browse the repository at this point in the history
fix order of wasmedge-quickjs installation
  • Loading branch information
lastmjs authored Mar 28, 2024
2 parents 3508867 + fabe736 commit ae9f41f
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -260,16 +260,6 @@ jobs:
name: Install wasi2ic
shell: bash -l {0}
run: cargo install --git https://github.com/wasm-forge/wasi2ic --rev 806c3558aad24224852a9582f018178402cb3679
# This is for the --native-compilation tests
- if: ${{ needs.release-candidate-deploy.outputs.should_run_tests }}
name: Install wasmedge-quickjs
shell: bash -l {0}
run: |
mkdir -p /home/runner/.config/azle
cd /home/runner/.config/azle
git clone https://github.com/demergent-labs/wasmedge-quickjs
cd wasmedge-quickjs
git checkout c21ff69f442998e4cda4619166e23a9bc91418be
- if: ${{ needs.release-candidate-deploy.outputs.should_run_tests && matrix.os == 'ubuntu-latest' }}
shell: bash -l {0}
run: sudo apt-get install -y podman
Expand All @@ -287,6 +277,16 @@ jobs:
run: npm link
- if: ${{ needs.release-candidate-deploy.outputs.should_run_tests && (matrix.azle_source == 'npm' || matrix.os == 'macos-latest') }}
run: npx azle clean # We want to test the full curl download when testing from a clean install or mac
# This is for the --native-compilation tests
- if: ${{ needs.release-candidate-deploy.outputs.should_run_tests }}
name: Install wasmedge-quickjs
shell: bash -l {0}
run: |
mkdir -p /home/runner/.config/azle
cd /home/runner/.config/azle
git clone https://github.com/demergent-labs/wasmedge-quickjs
cd wasmedge-quickjs
git checkout c21ff69f442998e4cda4619166e23a9bc91418be
- if: ${{ needs.release-candidate-deploy.outputs.should_run_tests }}
working-directory: ${{ matrix.example_directories }}
run: dfx start --clean --background --host 127.0.0.1:8000
Expand Down

0 comments on commit ae9f41f

Please sign in to comment.