-
Notifications
You must be signed in to change notification settings - Fork 198
317 lines (263 loc) · 8.62 KB
/
ci.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
name: CI
on:
pull_request:
push:
branches: ['**']
tags-ignore: ['**']
concurrency:
group: ${{ github.event_name != 'pull_request' && github.run_id || github.ref }}
cancel-in-progress: true
env:
LC_ALL: 'C.UTF-8'
LANG: 'C.UTF-8'
LANGUAGE: 'C.UTF-8'
jobs:
type-check:
name: Type check
runs-on: ubuntu-latest
container: python:latest
steps:
- uses: actions/checkout@v4
- run: |
pip install poetry
poetry install
- name: Run check
run: >
poetry run
mypy
hwi.py
hwilib/_base58.py
hwilib/_bech32.py
hwilib/_cli.py
hwilib/commands.py
hwilib/common.py
hwilib/descriptor.py
hwilib/devices/bitbox02.py
hwilib/devices/coldcard.py
hwilib/devices/digitalbitbox.py
hwilib/devices/jade.py
hwilib/devices/__init__.py
hwilib/devices/keepkey.py
hwilib/devices/ledger.py
hwilib/devices/trezor.py
hwilib/errors.py
hwilib/_script.py
hwilib/_serialize.py
hwilib/tx.py
hwilib/hwwclient.py
hwilib/__init__.py
hwilib/key.py
hwilib/udevinstaller.py
non-device-tests:
name: Non-device tests
runs-on: ubuntu-latest
container: python:latest
steps:
- uses: actions/checkout@v4
- run: |
pip install poetry
poetry install
- name: Run tests
run: |
cd test; poetry run ./run_tests.py; cd ..
lint:
name: lint
runs-on: ubuntu-latest
container: python:latest
steps:
- uses: actions/checkout@v4
- run: |
pip install poetry
poetry install
- run: |
poetry run flake8
wine-builder:
name: Wine builder
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: docker/build-push-action@v5
with:
context: .
file: contrib/build-wine.Dockerfile
tags: build-wine-container
load: true
- run: >
docker run --rm \
--volume ${{ github.workspace }}:${{ github.workspace }} \
--workdir ${{ github.workspace }} \
build-wine-container bash -c "
git config --global --add safe.directory ${{ github.workspace }}
contrib/build_wine.sh
find dist -type f -exec sha256sum {} \;
"
dist-builder:
name: Dist builder
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: docker/build-push-action@v5
with:
context: .
file: contrib/build.Dockerfile
tags: build-container
load: true
- run: >
docker run --rm \
--volume ${{ github.workspace }}:${{ github.workspace }} \
--workdir ${{ github.workspace }} \
build-container bash -c "
git config --global --add safe.directory ${{ github.workspace }}
contrib/build_bin.sh
contrib/build_dist.sh
find dist -type f -exec sha256sum {} \;
"
- uses: actions/upload-artifact@v3
with:
name: dist
path: dist/
sim-builder:
name: Sim builder
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
device:
- { name: 'trezor-1', archive: 'trezor-firmware', paths: 'test/work/trezor-firmware' }
- { name: 'trezor-t', archive: 'trezor-firmware', paths: 'test/work/trezor-firmware' }
- { name: 'coldcard', archive: 'coldcard-mpy', paths: 'test/work/firmware/external/micropython/ports/unix/coldcard-mpy test/work/firmware/unix/coldcard-mpy test/work/firmware/unix/l-mpy test/work/firmware/unix/l-port' }
- { name: 'bitbox01', archive: 'mcu', paths: 'test/work/mcu' }
- { name: 'jade', archive: 'jade', paths: 'test/work/jade/simulator' }
- { name: 'ledger', archive: 'speculos', paths: 'test/work/speculos' }
- { name: 'keepkey', archive: 'keepkey-firmware', paths: 'test/work/keepkey-firmware/bin' }
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y gcc-arm-linux-gnueabihf libsdl2-image-dev libslirp-dev libpcsclite-dev ninja-build
pip install poetry
wget https://github.com/protocolbuffers/protobuf/releases/download/v22.0/protoc-22.0-linux-x86_64.zip
sudo unzip protoc-22.0-linux-x86_64.zip -d /usr/local
protoc --version
- name: Build simulator
run: |
git config --global user.email "[email protected]"
git config --global user.name "ci"
cd test; ./setup_environment.sh --${{ matrix.device.name }}; cd ..
tar -czf ${{ matrix.device.archive }}.tar.gz ${{ matrix.device.paths }}
- uses: actions/upload-artifact@v3
with:
name: ${{ matrix.device.name }}-sim
path: ${{ matrix.device.archive }}.tar.gz
ledger-app-builder:
name: Ledger App builder
runs-on: ubuntu-latest
container: ghcr.io/ledgerhq/ledger-app-builder/ledger-app-builder:latest
steps:
- run: |
git clone https://github.com/LedgerHQ/app-bitcoin-new.git
cd app-bitcoin-new
make DEBUG=1
- uses: actions/upload-artifact@v3
with:
name: ledger_app
path: app-bitcoin-new/bin/app.elf
bitcoind-builder:
name: bitcoind builder
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/build-bitcoind
test-dist:
name: Python ${{ matrix.python-version }} ${{ matrix.device }} ${{ matrix.script.name }}
runs-on: ubuntu-latest
needs: [ dist-builder, sim-builder, ledger-app-builder, bitcoind-builder ]
strategy:
fail-fast: false
matrix:
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11' ]
device:
- 'trezor-1'
- 'trezor-t'
- 'coldcard'
- 'bitbox01'
- 'jade'
- 'ledger'
- 'ledger-legacy'
- 'keepkey'
script:
- name: 'Wheel'
install: 'pip install dist/*.whl'
test: 'cd test; ./run_tests.py $DEVICE --interface=cli --device-only; cd ..'
- name: 'Sdist'
install: 'pip install $(find dist -name "*.tar.gz" -a -not -name "*linux*")'
test: 'cd test; ./run_tests.py $DEVICE --interface=cli --device-only; cd ..'
- name: 'Bindist'
install: 'poetry install; cd dist; tar -xvf hwi*linux*.tar.gz; cd ..'
test: 'cd test; poetry run ./run_tests.py $DEVICE --interface=bindist --device-only; cd ..'
env:
DEVICE: '--${{ matrix.device }}'
container: python:${{ matrix.python-version }}
steps:
- uses: actions/checkout@v4
- run: |
pip install poetry
- uses: actions/download-artifact@v3
with:
name: dist
path: dist/
- run: |
${{ matrix.script.install }}
- uses: actions/download-artifact@v3
with:
name: bitcoind
- run: |
tar -xvf bitcoind.tar.gz
- uses: ./.github/actions/install-sim
with:
device: ${{ matrix.device }}
- name: Run tests
run: |
${{ matrix.script.test }}
- if: failure()
run: |
tail -v -n +1 test/*.std*
test-all:
name: Python ${{ matrix.python-version }} ${{ matrix.device }} ${{ matrix.interface }}
runs-on: ubuntu-latest
needs: [ sim-builder, ledger-app-builder, bitcoind-builder ]
strategy:
fail-fast: false
matrix:
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11' ]
device:
- 'trezor-1'
- 'trezor-t'
- 'coldcard'
- 'bitbox01'
- 'jade'
- 'ledger'
- 'ledger-legacy'
- 'keepkey'
interface: [ 'library', 'cli', 'stdin' ]
container: python:${{ matrix.python-version }}
steps:
- uses: actions/checkout@v4
- run: |
pip install poetry
poetry install
- uses: actions/download-artifact@v3
with:
name: bitcoind
- run: |
tar -xvf bitcoind.tar.gz
- uses: ./.github/actions/install-sim
with:
device: ${{ matrix.device }}
- name: Run tests
run: |
cd test; poetry run ./run_tests.py --${{ matrix.device }} --interface=${{ matrix.interface }} --device-only; cd ..
- if: failure()
run: |
tail -v -n +1 test/*.std*