1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-12 19:09:10 +00:00
trezor-firmware/ci/test.yml

189 lines
3.5 KiB
YAML
Raw Normal View History

image: registry.gitlab.com/satoshilabs/trezor/trezor-firmware/environment
.only_changes_core: &only_changes_core
only:
changes:
- ci/**/*
- common/**/*
- core/**/*
- crypto/**/*
- python/**/*
- storage/**/*
- tests/**/*
- tools/**/*
- vendor/**/*
.only_changes_legacy: &only_changes_legacy
only:
changes:
- ci/**/*
- common/**/*
- crypto/**/*
- legacy/**/*
- python/**/*
- storage/**/*
- tests/**/*
- tools/**/*
- vendor/**/*
# Core
core unix unit test:
stage: test
<<: *only_changes_core
dependencies:
- core unix frozen regular build
script:
- cd core
- pipenv run make test
core unix device test:
stage: test
<<: *only_changes_core
dependencies:
- core unix frozen regular build
script:
- cd core
- pipenv run make test_emu
core unix btconly device test:
2019-08-22 18:18:44 +00:00
stage: test
<<: *only_changes_core
2019-08-22 18:18:44 +00:00
dependencies:
- core unix frozen btconly build
2019-08-22 18:18:44 +00:00
variables:
MICROPYTHON: "../build/unix/micropython-bitcoinonly"
TREZOR_PYTEST_SKIP_ALTCOINS: 1
script:
- cd core
- pipenv run make test_emu
core unix monero test:
stage: test
<<: *only_changes_core
retry: 2 # see #405
dependencies:
- core unix frozen regular build
script:
- cd core
- pipenv run make test_emu_monero
2019-09-14 12:47:30 +00:00
core unix u2f test:
stage: test
<<: *only_changes_core
retry: 2 # see #596
2019-09-14 12:47:30 +00:00
dependencies:
- core unix frozen regular build
script:
2019-09-14 12:59:11 +00:00
- make -C tests/fido_tests/u2f-tests-hid
2019-09-14 12:47:30 +00:00
- cd core
- pipenv run make test_emu_u2f
core unix upgrade test:
stage: test
<<: *only_changes_core
dependencies:
- core unix frozen debug build
variables:
TREZOR_UPGRADE_TEST: "core"
script:
2019-09-12 13:42:40 +00:00
- tests/download_emulators.sh
- pipenv run pytest tests/upgrade_tests
2019-10-16 13:30:41 +00:00
core mypy test:
stage: test
<<: *only_changes_core
script:
- cd core
- (pipenv run make mypy | tee /tmp/mypy-result) || true
- CNT=`wc -l < /tmp/mypy-result`
- echo $CNT
- (( $CNT != 0 )) && (( $CNT < 154 )) && exit 0 # currently hardcoded, will be fixed
# Crypto
crypto test:
stage: test
only:
changes:
- ci/**/*
- crypto/**/*
dependencies:
- crypto build
script:
- cd crypto
- ./tests/aestst
- ./tests/test_check
- ./tests/test_openssl 1000
- ITERS=10 pipenv run pytest tests
- CK_TIMEOUT_MULTIPLIER=20 valgrind -q --error-exitcode=1 ./tests/test_check
# Legacy
legacy emu test:
stage: test
<<: *only_changes_legacy
dependencies:
- legacy emu regular build
variables:
EMULATOR: "1"
script:
- cd legacy
- pipenv run script/test
legacy emu btconly test:
2019-08-22 18:18:44 +00:00
stage: test
<<: *only_changes_legacy
2019-08-22 18:18:44 +00:00
dependencies:
- legacy emu btconly build
2019-08-22 18:18:44 +00:00
variables:
EMULATOR: "1"
EMULATOR_BINARY: "firmware/trezor-bitcoinonly.elf"
TREZOR_PYTEST_SKIP_ALTCOINS: 1
script:
- cd legacy
- pipenv run script/test
legacy emu upgrade test:
stage: test
<<: *only_changes_legacy
dependencies:
- legacy emu regular build
variables:
TREZOR_UPGRADE_TEST: "legacy"
script:
2019-09-12 13:42:40 +00:00
- tests/download_emulators.sh
- pipenv run pytest tests/upgrade_tests
# Python
python test:
stage: test
only:
changes:
- ci/**/*
- common/**/*
- python/**/*
script:
- cd python
- pipenv run tox
# Storage
storage test:
stage: test
only:
changes:
- ci/**/*
- storage/**/*
dependencies: []
script:
- cd storage/tests
- pipenv run make build
- pipenv run make tests_all