Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: delete me, debugging ci | |
on: | |
push: | |
branches: | |
- sre-359-make-integration-tests-be-able-to-use-latest-wasmer-cli | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
jobs: | |
test: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout wasmer-integration-tests repository | |
uses: actions/checkout@v3 | |
with: | |
repository: wasmerio/wasmer-integration-tests | |
submodules: true | |
token: ${{ secrets.CLONE_WASMER_INTEGRATION_TESTS }} | |
- uses: actions/download-artifact@v4 | |
with: | |
name: wasmer-cli-linux-x64 | |
run-id: 9978713382 | |
github-token: ${{ github.token }} | |
- run: | | |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y | |
. "$HOME/.cargo/env" | |
tar -xzf build-wasmer.tar.gz | |
export PATH=$PATH:$PWD/bin | |
wasmer config set registry.url https://registry.wasmer.wtf/graphql | |
wasmer login ${{ secrets.WAPM_DEV_TOKEN }} | |
wasmer whoami | |
cargo test --no-fail-fast -- --test-threads 1 |