-
Notifications
You must be signed in to change notification settings - Fork 3
48 lines (39 loc) · 1.27 KB
/
integration_test.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: Integration Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
no-tee:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run yarn install
run: yarn install
- name: Download encointer-node
uses: dawidd6/action-download-artifact@v2
with:
github_token: ${{secrets.GITHUB_TOKEN}}
workflow: build-and-test.yml
name: encointer-node-notee-3e805e3283a7348ff70f22224478db5b5366395b
# in fact this action should download the latest artifact, but sometimes fails. Then we need to
# set the `run_id` to force a download of an updated binary.
run_id: 6253043495
path: node
repo: encointer/encointer-node
- name: Run encointer-node
run: |
ls -alt node
chmod +x node/encointer-node-notee
./node/encointer-node-notee --tmp --dev --enable-offchain-indexing true --rpc-methods unsafe &
- name: Run integration tests
run: yarn test:integration
kusama-parachain:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run yarn install
run: yarn install
- name: Run integration tests
run: yarn test:ksm