1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-13 19:18:56 +00:00

ci: build legacy emulator and pass to tests

updates #108
This commit is contained in:
Tomas Susanka 2019-04-26 15:31:09 +02:00
parent ae1a721030
commit 48abff67df

View File

@ -82,17 +82,29 @@ build core unix:
untracked: true
expire_in: 1 day
# TODO: matrix: DEBUG_LINK={0,1}, gcc vs clang
build legacy:
# TODO: matrix: gcc vs clang
build legacy firmware:
stage: build
variables:
HEADLESS: "1"
script:
- cd legacy
- pipenv run script/cibuild
- pipenv run make -C bootloader
- pipenv run make -C demo
build legacy emu:
stage: build
variables:
HEADLESS: "1"
EMULATOR: "1"
DEBUG_LINK: "1"
script:
- cd legacy
- pipenv run script/cibuild
artifacts:
name: "$CI_JOB_NAME-$CI_COMMIT_SHORT_SHA"
untracked: true
expire_in: 1 day
test core unix unit:
stage: test
script:
@ -111,6 +123,18 @@ test core unix monero:
- cd core
- pipenv run make test_emu_monero
# TODO: matrix: do we need to test gcc vs clang as well? or build is enough?
# TODO: aren't some tests from .travis.yml missing?
test legacy emu:
stage: test
variables:
EMULATOR: "1"
dependencies:
- build legacy emu
script:
- cd legacy
- pipenv run script/test
test crypto:
stage: test
dependencies: [] # no need to download artifacts
@ -123,19 +147,6 @@ test crypto:
- ./tests/test_openssl 1000
- ITERS=10 pipenv run pytest tests/ # TODO are ITERS=10 propagated?
# TODO: matrix: DEBUG_LINK={0,1}, gcc vs clang
# TODO add more based on deleted .travis.yml
test legacy:
stage: test
variables:
HEADLESS: "1"
EMULATOR: "1"
DEBUG_LINK: "1"
script:
- cd legacy
- pipenv run script/cibuild
- pipenv run script/test
test storage:
stage: test
dependencies: []