-
Notifications
You must be signed in to change notification settings - Fork 381
59 lines (47 loc) · 1.66 KB
/
e2e-tests.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name: E2E Tests
on:
workflow_dispatch:
push:
branches: [ master ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
jobs:
e2e-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout the source code
uses: actions/checkout@v4
- name: Clone e2e-tests
run: git clone https://github.com/AstarNetwork/e2e-tests.git --depth 1
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: 'yarn'
cache-dependency-path: e2e-tests/yarn.lock
# - name: Install deps
# run: sudo apt -y install protobuf-compiler
# - name: Install & display rust toolchain
# run: rustup show
# - name: Check targets are installed correctly
# run: rustup target list --installed
# - name: Build Astar & Shiden runtimes
# run: cargo build --release --locked -p astar-runtime -p shiden-runtime
# - name: Copy runtimes into test folder
# run: |
# cp target/release/wbuild/astar-runtime/astar_runtime.compact.compressed.wasm e2e-tests/wasm/astar_runtime.wasm
# cp target/release/wbuild/shiden-runtime/shiden_runtime.compact.compressed.wasm e2e-tests/wasm/shiden_runtime.wasm
- name: Install dependencies
working-directory: e2e-tests
run: yarn --immutable
- name: Update env
working-directory: e2e-tests
run: yarn update-env
- name: Run e2e test with the new runtimes
working-directory: e2e-tests
run: yarn vitest
env:
LOG_LEVEL: debug
# ASTAR_WASM: wasm/astar_runtime.wasm
# SHIDEN_WASM: wasm/astar_runtime.wasm