-
Notifications
You must be signed in to change notification settings - Fork 836
34 lines (31 loc) · 1.01 KB
/
tmp.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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