1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-22 15:38:11 +00:00

ci: add "regular" to regular builds

This commit is contained in:
Pavol Rusnak 2019-09-02 13:45:22 +02:00
parent 355cebf8bf
commit e04555e3e5
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D
2 changed files with 10 additions and 10 deletions

View File

@ -7,7 +7,7 @@ variables:
# Core # Core
build core firmware: build core firmware regular:
stage: build stage: build
script: script:
- cd core - cd core
@ -44,13 +44,13 @@ build core firmware bitcoinonly:
- trezor-*.*.*-$CI_COMMIT_SHORT_SHA-bitcoinonly.bin - trezor-*.*.*-$CI_COMMIT_SHORT_SHA-bitcoinonly.bin
expire_in: 1 week expire_in: 1 week
build core unix: build core unix regular:
stage: build stage: build
script: script:
- cd core - cd core
- pipenv run make build_unix - pipenv run make build_unix
build core unix frozen: build core unix frozen regular:
stage: build stage: build
script: script:
- cd core - cd core
@ -110,7 +110,7 @@ build crypto:
# Legacy # Legacy
# TODO: add clang https://github.com/trezor/trezor-firmware/issues/44 # TODO: add clang https://github.com/trezor/trezor-firmware/issues/44
build legacy firmware: build legacy firmware regular:
stage: build stage: build
variables: variables:
MEMORY_PROTECT: "0" MEMORY_PROTECT: "0"
@ -156,7 +156,7 @@ build legacy firmware bitcoinonly:
- trezor-*.*.*-$CI_COMMIT_SHORT_SHA-bitcoinonly.bin - trezor-*.*.*-$CI_COMMIT_SHORT_SHA-bitcoinonly.bin
expire_in: 1 week expire_in: 1 week
build legacy emu: build legacy emu regular:
stage: build stage: build
variables: variables:
DEBUG_LINK: "1" DEBUG_LINK: "1"

View File

@ -5,7 +5,7 @@ image: registry.gitlab.com/satoshilabs/trezor/trezor-firmware/environment
test core unix unit: test core unix unit:
stage: test stage: test
dependencies: dependencies:
- build core unix frozen - build core unix frozen regular
script: script:
- cd core - cd core
- pipenv run make test - pipenv run make test
@ -13,7 +13,7 @@ test core unix unit:
test core unix device: test core unix device:
stage: test stage: test
dependencies: dependencies:
- build core unix frozen - build core unix frozen regular
script: script:
- cd core - cd core
- pipenv run make test_emu - pipenv run make test_emu
@ -32,7 +32,7 @@ test core unix device bitcoinonly:
test core unix monero: test core unix monero:
stage: test stage: test
dependencies: dependencies:
- build core unix frozen - build core unix frozen regular
script: script:
- cd core - cd core
- pipenv run make test_emu_monero - pipenv run make test_emu_monero
@ -58,7 +58,7 @@ test crypto:
test legacy emu: test legacy emu:
stage: test stage: test
dependencies: dependencies:
- build legacy emu - build legacy emu regular
variables: variables:
EMULATOR: "1" EMULATOR: "1"
script: script:
@ -104,7 +104,7 @@ test upgrade:
stage: test stage: test
dependencies: dependencies:
- build core unix frozen debug - build core unix frozen debug
- build legacy emu - build legacy emu regular
script: script:
- tests/upgrade_tests/download_emulators.sh - tests/upgrade_tests/download_emulators.sh
- pipenv run pytest tests/upgrade_tests - pipenv run pytest tests/upgrade_tests