2019-08-19 12:24:32 +00:00
|
|
|
image: registry.gitlab.com/satoshilabs/trezor/trezor-firmware/environment
|
|
|
|
|
2019-09-05 15:44:55 +00:00
|
|
|
.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/**/*
|
|
|
|
|
2019-09-04 08:53:40 +00:00
|
|
|
|
2019-08-19 12:24:32 +00:00
|
|
|
# Core
|
|
|
|
|
2019-09-04 08:53:40 +00:00
|
|
|
core unix unit test:
|
2019-08-19 12:24:32 +00:00
|
|
|
stage: test
|
2019-09-05 15:44:55 +00:00
|
|
|
<<: *only_changes_core
|
2019-08-19 12:24:32 +00:00
|
|
|
dependencies:
|
2019-09-04 08:53:40 +00:00
|
|
|
- core unix frozen regular build
|
2019-08-19 12:24:32 +00:00
|
|
|
script:
|
|
|
|
- cd core
|
|
|
|
- pipenv run make test
|
|
|
|
|
2019-12-09 16:01:04 +00:00
|
|
|
core unix device ui test:
|
|
|
|
stage: test
|
|
|
|
<<: *only_changes_core
|
|
|
|
dependencies:
|
|
|
|
- core unix frozen regular build
|
|
|
|
script:
|
|
|
|
- cd core
|
|
|
|
- pipenv run make test_emu_ui
|
|
|
|
- cp /var/tmp/trezor.log ${CI_PROJECT_DIR}
|
2019-12-30 13:09:18 +00:00
|
|
|
- cd ../ci
|
|
|
|
- pipenv run python prepare_ui_artifacts.py
|
2019-12-09 16:01:04 +00:00
|
|
|
artifacts:
|
2020-01-03 13:49:35 +00:00
|
|
|
name: core-unix-device-ui-test
|
2019-12-09 16:01:04 +00:00
|
|
|
paths:
|
|
|
|
- trezor.log
|
2020-01-06 14:59:12 +00:00
|
|
|
- ci/ui_test_records/
|
2020-01-09 14:25:45 +00:00
|
|
|
- tests/ui_tests/reports/
|
2020-01-07 11:53:50 +00:00
|
|
|
- tests/junit.xml
|
2020-01-03 13:49:35 +00:00
|
|
|
when: always
|
2019-12-09 16:01:04 +00:00
|
|
|
expire_in: 1 week
|
2020-01-07 11:53:50 +00:00
|
|
|
reports:
|
|
|
|
junit: tests/junit.xml
|
2019-12-09 16:01:04 +00:00
|
|
|
|
2019-09-04 08:53:40 +00:00
|
|
|
core unix device test:
|
2019-08-19 12:24:32 +00:00
|
|
|
stage: test
|
2019-09-05 15:44:55 +00:00
|
|
|
<<: *only_changes_core
|
2019-08-19 12:24:32 +00:00
|
|
|
dependencies:
|
2019-09-04 08:53:40 +00:00
|
|
|
- core unix frozen regular build
|
2019-05-27 12:17:43 +00:00
|
|
|
variables:
|
|
|
|
TREZOR_PROFILING: 1
|
2019-08-19 12:24:32 +00:00
|
|
|
script:
|
|
|
|
- cd core
|
|
|
|
- pipenv run make test_emu
|
2019-12-09 08:28:28 +00:00
|
|
|
- cp /var/tmp/trezor.log ${CI_PROJECT_DIR}
|
2019-05-27 12:17:43 +00:00
|
|
|
- sync
|
|
|
|
- sleep 1
|
|
|
|
- mv ./src/.coverage .coverage.test_emu
|
2019-12-09 08:28:28 +00:00
|
|
|
artifacts:
|
2020-01-02 17:55:37 +00:00
|
|
|
name: core-unix-device-test
|
2019-12-09 08:28:28 +00:00
|
|
|
paths:
|
|
|
|
- trezor.log
|
2020-01-02 17:55:37 +00:00
|
|
|
- tests/junit.xml
|
2019-05-27 12:17:43 +00:00
|
|
|
- core/.coverage.*
|
2019-12-09 08:28:28 +00:00
|
|
|
expire_in: 1 week
|
2020-01-03 14:26:12 +00:00
|
|
|
when: always
|
2020-01-02 17:55:37 +00:00
|
|
|
reports:
|
|
|
|
junit: tests/junit.xml
|
2019-08-19 12:24:32 +00:00
|
|
|
|
2019-09-04 08:53:40 +00:00
|
|
|
core unix btconly device test:
|
2019-08-22 18:18:44 +00:00
|
|
|
stage: test
|
2019-09-05 15:44:55 +00:00
|
|
|
<<: *only_changes_core
|
2019-08-22 18:18:44 +00:00
|
|
|
dependencies:
|
2019-09-04 08:53:40 +00:00
|
|
|
- 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
|
2019-12-09 08:28:28 +00:00
|
|
|
- cp /var/tmp/trezor.log ${CI_PROJECT_DIR}
|
|
|
|
artifacts:
|
2020-01-02 17:55:37 +00:00
|
|
|
name: core-unix-btconly-device-test
|
2019-12-09 08:28:28 +00:00
|
|
|
paths:
|
|
|
|
- trezor.log
|
2020-01-02 17:55:37 +00:00
|
|
|
- tests/junit.xml
|
2019-12-09 08:28:28 +00:00
|
|
|
expire_in: 1 week
|
2020-01-03 14:26:12 +00:00
|
|
|
when: always
|
2020-01-02 17:55:37 +00:00
|
|
|
reports:
|
|
|
|
junit: tests/junit.xml
|
2019-08-22 18:18:44 +00:00
|
|
|
|
2019-09-04 08:53:40 +00:00
|
|
|
core unix monero test:
|
2019-08-19 12:24:32 +00:00
|
|
|
stage: test
|
2019-09-05 15:44:55 +00:00
|
|
|
<<: *only_changes_core
|
2019-08-19 12:24:32 +00:00
|
|
|
dependencies:
|
2019-09-04 08:53:40 +00:00
|
|
|
- core unix frozen regular build
|
2019-05-27 12:17:43 +00:00
|
|
|
variables:
|
|
|
|
TREZOR_PROFILING: 1
|
2019-08-19 12:24:32 +00:00
|
|
|
script:
|
|
|
|
- cd core
|
|
|
|
- pipenv run make test_emu_monero
|
2019-12-09 08:28:28 +00:00
|
|
|
- cp /var/tmp/trezor.log ${CI_PROJECT_DIR}
|
2019-05-27 12:17:43 +00:00
|
|
|
- sync
|
|
|
|
- sleep 1
|
|
|
|
- mv ./src/.coverage .coverage.test_emu_monero
|
2019-12-09 08:28:28 +00:00
|
|
|
artifacts:
|
2020-01-02 17:55:37 +00:00
|
|
|
name: core-unix-monero-test
|
2019-12-09 08:28:28 +00:00
|
|
|
paths:
|
|
|
|
- trezor.log
|
2019-05-27 12:17:43 +00:00
|
|
|
- core/.coverage.*
|
2019-12-09 08:28:28 +00:00
|
|
|
expire_in: 1 week
|
2020-01-03 14:26:12 +00:00
|
|
|
when: always
|
2019-08-19 12:24:32 +00:00
|
|
|
|
2019-09-14 12:47:30 +00:00
|
|
|
core unix u2f test:
|
|
|
|
stage: test
|
|
|
|
<<: *only_changes_core
|
|
|
|
dependencies:
|
|
|
|
- core unix frozen regular build
|
2019-05-27 12:17:43 +00:00
|
|
|
variables:
|
|
|
|
TREZOR_PROFILING: 1
|
2019-09-14 12:47:30 +00:00
|
|
|
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
|
2019-12-09 08:28:28 +00:00
|
|
|
- cp /var/tmp/trezor.log ${CI_PROJECT_DIR}
|
2019-05-27 12:17:43 +00:00
|
|
|
- sync
|
|
|
|
- sleep 1
|
|
|
|
- mv ./src/.coverage .coverage.test_emu_u2f
|
2019-12-09 08:28:28 +00:00
|
|
|
artifacts:
|
2020-01-02 17:55:37 +00:00
|
|
|
name: core-unix-u2f-test
|
2019-12-09 08:28:28 +00:00
|
|
|
paths:
|
|
|
|
- trezor.log
|
2019-05-27 12:17:43 +00:00
|
|
|
- core/.coverage.*
|
2019-12-09 08:28:28 +00:00
|
|
|
expire_in: 1 week
|
2020-01-03 14:26:12 +00:00
|
|
|
when: always
|
2019-09-14 12:47:30 +00:00
|
|
|
|
2019-10-18 13:35:45 +00:00
|
|
|
core unix fido2 test:
|
|
|
|
stage: test
|
|
|
|
<<: *only_changes_core
|
|
|
|
dependencies:
|
|
|
|
- core unix frozen regular build
|
2019-05-27 12:17:43 +00:00
|
|
|
variables:
|
|
|
|
TREZOR_PROFILING: 1
|
2019-10-18 13:35:45 +00:00
|
|
|
script:
|
|
|
|
- cd core
|
|
|
|
- pipenv run make test_emu_fido2
|
2019-12-09 08:28:28 +00:00
|
|
|
- cp /var/tmp/trezor.log ${CI_PROJECT_DIR}
|
2019-05-27 12:17:43 +00:00
|
|
|
- sync
|
|
|
|
- sleep 1
|
|
|
|
- mv ./src/.coverage .coverage.test_emu_fido2
|
2019-12-09 08:28:28 +00:00
|
|
|
artifacts:
|
2020-01-02 17:55:37 +00:00
|
|
|
name: core-unix-fido2-test
|
2019-12-09 08:28:28 +00:00
|
|
|
paths:
|
|
|
|
- trezor.log
|
2020-01-02 17:55:37 +00:00
|
|
|
- tests/junit.xml
|
2019-05-27 12:17:43 +00:00
|
|
|
- core/.coverage.*
|
2019-12-09 08:28:28 +00:00
|
|
|
expire_in: 1 week
|
2020-01-02 17:55:37 +00:00
|
|
|
reports:
|
|
|
|
junit: tests/junit.xml
|
2020-01-03 14:26:12 +00:00
|
|
|
when: always
|
2019-10-18 13:35:45 +00:00
|
|
|
|
2019-10-25 12:03:44 +00:00
|
|
|
core unix click test:
|
|
|
|
stage: test
|
|
|
|
<<: *only_changes_core
|
|
|
|
dependencies:
|
|
|
|
- core unix frozen debug build
|
|
|
|
script:
|
|
|
|
- cd core
|
|
|
|
- pipenv run make test_emu_click
|
2019-12-09 08:28:28 +00:00
|
|
|
- cp /var/tmp/trezor.log ${CI_PROJECT_DIR}
|
|
|
|
artifacts:
|
2020-01-02 17:55:37 +00:00
|
|
|
name: core-unix-click-test
|
2019-12-09 08:28:28 +00:00
|
|
|
paths:
|
|
|
|
- trezor.log
|
2020-01-02 17:55:37 +00:00
|
|
|
- tests/junit.xml
|
|
|
|
reports:
|
|
|
|
junit: tests/junit.xml
|
2019-12-09 08:28:28 +00:00
|
|
|
expire_in: 1 week
|
2020-01-03 14:26:12 +00:00
|
|
|
when: always
|
2019-10-25 12:03:44 +00:00
|
|
|
|
2019-09-09 14:03:32 +00:00
|
|
|
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
|
2020-01-02 17:55:37 +00:00
|
|
|
- pipenv run pytest --junitxml=tests/junit.xml tests/upgrade_tests
|
|
|
|
artifacts:
|
|
|
|
name: core-unix-upgrade-test
|
|
|
|
paths:
|
|
|
|
- tests/junit.xml
|
|
|
|
reports:
|
|
|
|
junit: tests/junit.xml
|
|
|
|
expire_in: 1 week
|
2020-01-03 14:26:12 +00:00
|
|
|
when: always
|
2019-09-09 14:03:32 +00:00
|
|
|
|
2019-10-25 12:03:44 +00:00
|
|
|
core unix persistence test:
|
|
|
|
stage: test
|
|
|
|
<<: *only_changes_core
|
|
|
|
dependencies:
|
|
|
|
- core unix frozen debug build
|
|
|
|
script:
|
2020-01-02 17:55:37 +00:00
|
|
|
- pipenv run pytest --junitxml=tests/junit.xml tests/persistence_tests
|
|
|
|
artifacts:
|
|
|
|
name: core-unix-persistence-test
|
|
|
|
paths:
|
|
|
|
- tests/junit.xml
|
|
|
|
reports:
|
|
|
|
junit: tests/junit.xml
|
|
|
|
expire_in: 1 week
|
2020-01-03 14:26:12 +00:00
|
|
|
when: always
|
2019-10-25 12:03:44 +00:00
|
|
|
|
2019-10-16 13:30:41 +00:00
|
|
|
core mypy test:
|
|
|
|
stage: test
|
|
|
|
<<: *only_changes_core
|
2019-10-18 13:35:45 +00:00
|
|
|
dependencies: [] # no artifacts needed
|
2019-10-16 13:30:41 +00:00
|
|
|
script:
|
|
|
|
- cd core
|
2019-10-22 13:22:59 +00:00
|
|
|
- pipenv run mypy --version
|
|
|
|
- pipenv run make res # needed for clean mypy
|
|
|
|
- pipenv run make mypy
|
2019-10-16 13:30:41 +00:00
|
|
|
|
2019-08-19 12:24:32 +00:00
|
|
|
|
|
|
|
# Crypto
|
|
|
|
|
2019-09-04 08:53:40 +00:00
|
|
|
crypto test:
|
2019-08-19 12:24:32 +00:00
|
|
|
stage: test
|
2019-09-05 15:44:55 +00:00
|
|
|
only:
|
|
|
|
changes:
|
|
|
|
- ci/**/*
|
|
|
|
- crypto/**/*
|
2019-08-19 12:24:32 +00:00
|
|
|
dependencies:
|
2019-09-04 08:53:40 +00:00
|
|
|
- crypto build
|
2019-08-19 12:24:32 +00:00
|
|
|
script:
|
|
|
|
- cd crypto
|
|
|
|
- ./tests/aestst
|
|
|
|
- ./tests/test_check
|
|
|
|
- ./tests/test_openssl 1000
|
2020-01-02 17:55:37 +00:00
|
|
|
- ITERS=10 pipenv run pytest --junitxml=tests/junit.xml tests
|
2019-08-30 14:57:49 +00:00
|
|
|
- CK_TIMEOUT_MULTIPLIER=20 valgrind -q --error-exitcode=1 ./tests/test_check
|
2020-01-02 17:55:37 +00:00
|
|
|
artifacts:
|
|
|
|
name: crypto-test
|
|
|
|
paths:
|
|
|
|
- tests/junit.xml
|
|
|
|
reports:
|
|
|
|
junit: tests/junit.xml
|
|
|
|
expire_in: 1 week
|
2020-01-03 14:26:12 +00:00
|
|
|
when: always
|
2019-08-19 12:24:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
# Legacy
|
|
|
|
|
2019-09-04 08:53:40 +00:00
|
|
|
legacy emu test:
|
2019-08-19 12:24:32 +00:00
|
|
|
stage: test
|
2019-09-05 15:44:55 +00:00
|
|
|
<<: *only_changes_legacy
|
2019-08-19 12:24:32 +00:00
|
|
|
dependencies:
|
2019-09-04 08:53:40 +00:00
|
|
|
- legacy emu regular build
|
2019-08-19 12:24:32 +00:00
|
|
|
variables:
|
|
|
|
EMULATOR: "1"
|
|
|
|
script:
|
|
|
|
- cd legacy
|
|
|
|
- pipenv run script/test
|
2020-01-02 17:55:37 +00:00
|
|
|
artifacts:
|
|
|
|
name: legacy-emu-test
|
|
|
|
paths:
|
|
|
|
- tests/junit.xml
|
|
|
|
reports:
|
|
|
|
junit: tests/junit.xml
|
|
|
|
expire_in: 1 week
|
2020-01-03 14:26:12 +00:00
|
|
|
when: always
|
2019-08-19 12:24:32 +00:00
|
|
|
|
2019-09-04 08:53:40 +00:00
|
|
|
legacy emu btconly test:
|
2019-08-22 18:18:44 +00:00
|
|
|
stage: test
|
2019-09-05 15:44:55 +00:00
|
|
|
<<: *only_changes_legacy
|
2019-08-22 18:18:44 +00:00
|
|
|
dependencies:
|
2019-09-04 08:53:40 +00:00
|
|
|
- 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
|
2020-01-02 17:55:37 +00:00
|
|
|
artifacts:
|
|
|
|
name: legacy-emu-btconly-test
|
|
|
|
paths:
|
|
|
|
- tests/junit.xml
|
|
|
|
reports:
|
|
|
|
junit: tests/junit.xml
|
|
|
|
expire_in: 1 week
|
2020-01-03 14:26:12 +00:00
|
|
|
when: always
|
2020-01-02 17:55:37 +00:00
|
|
|
|
2019-08-22 18:18:44 +00:00
|
|
|
|
2019-09-09 14:03:32 +00:00
|
|
|
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
|
2020-01-02 17:55:37 +00:00
|
|
|
- pipenv run pytest --junitxml=tests/junit.xml tests/upgrade_tests
|
|
|
|
artifacts:
|
|
|
|
name: legacy-emu-upgrade-test
|
|
|
|
paths:
|
|
|
|
- tests/junit.xml
|
|
|
|
reports:
|
|
|
|
junit: tests/junit.xml
|
|
|
|
expire_in: 1 week
|
2020-01-03 14:26:12 +00:00
|
|
|
when: always
|
2019-09-09 14:03:32 +00:00
|
|
|
|
2019-08-19 12:24:32 +00:00
|
|
|
|
|
|
|
# Python
|
|
|
|
|
2019-09-04 08:53:40 +00:00
|
|
|
python test:
|
2019-08-19 12:24:32 +00:00
|
|
|
stage: test
|
2019-09-05 15:44:55 +00:00
|
|
|
only:
|
|
|
|
changes:
|
|
|
|
- ci/**/*
|
2019-09-09 13:51:44 +00:00
|
|
|
- common/**/*
|
2019-09-05 15:44:55 +00:00
|
|
|
- python/**/*
|
2019-08-19 12:24:32 +00:00
|
|
|
script:
|
|
|
|
- cd python
|
|
|
|
- pipenv run tox
|
|
|
|
|
|
|
|
|
|
|
|
# Storage
|
|
|
|
|
2019-09-04 08:53:40 +00:00
|
|
|
storage test:
|
2019-08-19 12:24:32 +00:00
|
|
|
stage: test
|
2019-09-05 15:44:55 +00:00
|
|
|
only:
|
|
|
|
changes:
|
|
|
|
- ci/**/*
|
|
|
|
- storage/**/*
|
2019-08-19 12:24:32 +00:00
|
|
|
dependencies: []
|
|
|
|
script:
|
|
|
|
- cd storage/tests
|
|
|
|
- pipenv run make build
|
|
|
|
- pipenv run make tests_all
|
2020-01-02 17:55:37 +00:00
|
|
|
artifacts:
|
|
|
|
name: storage-test
|
|
|
|
paths:
|
|
|
|
- tests/junit.xml
|
|
|
|
reports:
|
|
|
|
junit: tests/junit.xml
|
|
|
|
expire_in: 1 week
|
2020-01-03 14:26:12 +00:00
|
|
|
when: always
|