-
Notifications
You must be signed in to change notification settings - Fork 190
69 lines (56 loc) · 1.59 KB
/
ci-workflow.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
name: CI
on: [push, pull_request]
jobs:
job_build:
name: Compilation
runs-on: ubuntu-latest
container:
image: ghcr.io/ledgerhq/ledger-app-builder/ledger-app-builder:latest
steps:
- name: Clone
uses: actions/checkout@v2
- name: Build
run: |
make && mv bin/ bitcoin-bin/
make clean
make COIN=bitcoin_testnet_legacy && mv bin/ bitcoin-testnet-bin/
- name: Upload Bitcoin app binary
uses: actions/upload-artifact@v2
with:
name: bitcoin-app
path: bitcoin-bin
- name: Upload Bitcoin Testnet app binary
uses: actions/upload-artifact@v2
with:
name: bitcoin-testnet-app
path: bitcoin-testnet-bin
job_test:
name: Tests
needs: job_build
runs-on: ubuntu-latest
container:
image: ghcr.io/ledgerhq/speculos:latest
ports:
- 1234:1234
- 9999:9999
- 40000:40000
- 41000:41000
- 42000:42000
- 43000:43000
options: --entrypoint /bin/bash
steps:
- name: Clone
uses: actions/checkout@v2
- name: Download Bitcoin app binary
uses: actions/download-artifact@v2
with:
name: bitcoin-app
path: tests/bitcoin-bin
- name: Download Bitcoin Testnet app binary
uses: actions/download-artifact@v2
with:
name: bitcoin-testnet-app
path: tests/bitcoin-testnet-bin
- name: Run tests
run: |
cd tests && pip install -r requirements.txt && SPECULOS=/speculos/speculos.py pytest