forked from trezor/trezor-firmware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
posttest.yml
32 lines (30 loc) · 946 Bytes
/
posttest.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
image: registry.gitlab.com/satoshilabs/trezor/trezor-firmware/trezor-firmware-env.nix
core unix coverage posttest:
stage: posttest
variables:
COVERAGE_THRESHOLD: "78"
needs: ["core device test", "core monero test", "core u2f test", "core fido2 test"]
script:
- nix-shell --run "pipenv run make -C core res" # we need to regenerate resources.py
- nix-shell --run "pipenv run make -C core coverage"
coverage: '/COVERAGE: \d+%/'
artifacts:
name: core-unix-coverage-posttest
paths:
- core/.coverage.*
- core/htmlcov
when: always
expire_in: 1 week
core unix ui changes:
stage: posttest
except:
- master
needs: ["core device ui test"]
script:
- nix-shell --run "cd tests/ui_tests ; pipenv run python reporting/report_master_diff.py"
- mv tests/ui_tests/reporting/reports/master_diff/ .
artifacts:
name: core-unix-ui-changes
paths:
- master_diff
expire_in: 1 week