Skip to content

Workflow file for this run

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