forked from paritytech/substrate-connect
-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (30 loc) · 1.01 KB
/
zombienet.yml
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
name: E2E Zombienet CI
on:
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: build
run: |
yarn install --immutable
yarn build
- name: Get zombienet
run: |
curl -L -O https://github.com/paritytech/zombienet/releases/download/v1.3.5/zombienet-linux
chmod +x zombienet-linux
- name: Get polkadot
run: |
curl -L -O https://github.com/paritytech/polkadot/releases/download/v0.9.30/polkadot
chmod +x polkadot
- name: Get polkadot-parachain
run: |
curl -L -O https://github.com/paritytech/cumulus/releases/download/v0.9.290/polkadot-parachain
chmod +x polkadot-parachain
- name: Run test
run: |
export PATH=$(pwd):$PATH
./zombienet-linux -p native test ./.zombienet-tests/0001-relay-smoke-test.zndsl
./zombienet-linux -p native test ./.zombienet-tests/0002-parachain.zndsl