mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-12-18 04:18:10 +00:00
ci: remove 'only changes'
This commit is contained in:
parent
9e90294f24
commit
1634baa1e5
@ -35,34 +35,6 @@ stages:
|
|||||||
before_script:
|
before_script:
|
||||||
- command -v pipenv >/dev/null && pipenv sync --python=/usr/bin/python3
|
- command -v pipenv >/dev/null && pipenv sync --python=/usr/bin/python3
|
||||||
|
|
||||||
.core_job:
|
|
||||||
only:
|
|
||||||
changes:
|
|
||||||
- ci/**/*
|
|
||||||
- common/**/*
|
|
||||||
- core/**/*
|
|
||||||
- crypto/**/*
|
|
||||||
- python/**/*
|
|
||||||
- storage/**/*
|
|
||||||
- tests/**/*
|
|
||||||
- tools/**/*
|
|
||||||
- vendor/**/*
|
|
||||||
- Pipfile.lock
|
|
||||||
|
|
||||||
.legacy_job:
|
|
||||||
only:
|
|
||||||
changes:
|
|
||||||
- ci/**/*
|
|
||||||
- common/**/*
|
|
||||||
- crypto/**/*
|
|
||||||
- legacy/**/*
|
|
||||||
- python/**/*
|
|
||||||
- storage/**/*
|
|
||||||
- tests/**/*
|
|
||||||
- tools/**/*
|
|
||||||
- vendor/**/*
|
|
||||||
- Pipfile.lock
|
|
||||||
|
|
||||||
include:
|
include:
|
||||||
- ci/environment.yml
|
- ci/environment.yml
|
||||||
- ci/prebuild.yml
|
- ci/prebuild.yml
|
||||||
|
12
ci/build.yml
12
ci/build.yml
@ -8,7 +8,6 @@ variables:
|
|||||||
|
|
||||||
core fw regular build:
|
core fw regular build:
|
||||||
stage: build
|
stage: build
|
||||||
extends: .core_job
|
|
||||||
script:
|
script:
|
||||||
- cd core
|
- cd core
|
||||||
- pipenv run make build_cross
|
- pipenv run make build_cross
|
||||||
@ -28,7 +27,6 @@ core fw regular build:
|
|||||||
|
|
||||||
core fw regular debug build:
|
core fw regular debug build:
|
||||||
stage: build
|
stage: build
|
||||||
extends: .core_job
|
|
||||||
script:
|
script:
|
||||||
- cd core
|
- cd core
|
||||||
- PYOPT=0 pipenv run make build_firmware
|
- PYOPT=0 pipenv run make build_firmware
|
||||||
@ -43,7 +41,6 @@ core fw regular debug build:
|
|||||||
|
|
||||||
core fw btconly build:
|
core fw btconly build:
|
||||||
stage: build
|
stage: build
|
||||||
extends: .core_job
|
|
||||||
variables:
|
variables:
|
||||||
BITCOIN_ONLY: "1"
|
BITCOIN_ONLY: "1"
|
||||||
script:
|
script:
|
||||||
@ -62,7 +59,6 @@ core fw btconly build:
|
|||||||
|
|
||||||
core unix regular build:
|
core unix regular build:
|
||||||
stage: build
|
stage: build
|
||||||
extends: .core_job
|
|
||||||
script:
|
script:
|
||||||
- cd core
|
- cd core
|
||||||
- pipenv run make build_unix
|
- pipenv run make build_unix
|
||||||
@ -75,7 +71,6 @@ core unix regular build:
|
|||||||
|
|
||||||
core unix frozen regular build:
|
core unix frozen regular build:
|
||||||
stage: build
|
stage: build
|
||||||
extends: .core_job
|
|
||||||
script:
|
script:
|
||||||
- cd core
|
- cd core
|
||||||
- pipenv run make build_unix_frozen
|
- pipenv run make build_unix_frozen
|
||||||
@ -87,7 +82,6 @@ core unix frozen regular build:
|
|||||||
|
|
||||||
core unix frozen btconly debug build:
|
core unix frozen btconly debug build:
|
||||||
stage: build
|
stage: build
|
||||||
extends: .core_job
|
|
||||||
variables:
|
variables:
|
||||||
PYOPT: "0"
|
PYOPT: "0"
|
||||||
BITCOIN_ONLY: "1"
|
BITCOIN_ONLY: "1"
|
||||||
@ -103,7 +97,6 @@ core unix frozen btconly debug build:
|
|||||||
|
|
||||||
core unix frozen debug build:
|
core unix frozen debug build:
|
||||||
stage: build
|
stage: build
|
||||||
extends: .core_job
|
|
||||||
variables:
|
variables:
|
||||||
PYOPT: "0"
|
PYOPT: "0"
|
||||||
script:
|
script:
|
||||||
@ -158,7 +151,6 @@ crypto build:
|
|||||||
|
|
||||||
legacy fw regular build:
|
legacy fw regular build:
|
||||||
stage: build
|
stage: build
|
||||||
extends: .legacy_job
|
|
||||||
variables:
|
variables:
|
||||||
MEMORY_PROTECT: "0"
|
MEMORY_PROTECT: "0"
|
||||||
script:
|
script:
|
||||||
@ -176,7 +168,6 @@ legacy fw regular build:
|
|||||||
|
|
||||||
legacy fw debug build:
|
legacy fw debug build:
|
||||||
stage: build
|
stage: build
|
||||||
extends: .legacy_job
|
|
||||||
variables:
|
variables:
|
||||||
DEBUG_LINK: "1"
|
DEBUG_LINK: "1"
|
||||||
MEMORY_PROTECT: "0"
|
MEMORY_PROTECT: "0"
|
||||||
@ -194,7 +185,6 @@ legacy fw debug build:
|
|||||||
|
|
||||||
legacy fw btconly build:
|
legacy fw btconly build:
|
||||||
stage: build
|
stage: build
|
||||||
extends: .legacy_job
|
|
||||||
variables:
|
variables:
|
||||||
BITCOIN_ONLY: "1"
|
BITCOIN_ONLY: "1"
|
||||||
MEMORY_PROTECT: "0"
|
MEMORY_PROTECT: "0"
|
||||||
@ -214,7 +204,6 @@ legacy fw btconly build:
|
|||||||
|
|
||||||
legacy emu regular build:
|
legacy emu regular build:
|
||||||
stage: build
|
stage: build
|
||||||
extends: .legacy_job
|
|
||||||
variables:
|
variables:
|
||||||
DEBUG_LINK: "1"
|
DEBUG_LINK: "1"
|
||||||
EMULATOR: "1"
|
EMULATOR: "1"
|
||||||
@ -229,7 +218,6 @@ legacy emu regular build:
|
|||||||
|
|
||||||
legacy emu btconly build:
|
legacy emu btconly build:
|
||||||
stage: build
|
stage: build
|
||||||
extends: .legacy_job
|
|
||||||
variables:
|
variables:
|
||||||
BITCOIN_ONLY: "1"
|
BITCOIN_ONLY: "1"
|
||||||
DEBUG_LINK: "1"
|
DEBUG_LINK: "1"
|
||||||
|
@ -199,7 +199,6 @@ upgrade tests legacy deploy:
|
|||||||
|
|
||||||
ui tests core fixtures deploy:
|
ui tests core fixtures deploy:
|
||||||
stage: deploy
|
stage: deploy
|
||||||
extends: .core_job
|
|
||||||
variables:
|
variables:
|
||||||
DEPLOY_PATH: "${DEPLOY_BASE_DIR}/ui_tests/"
|
DEPLOY_PATH: "${DEPLOY_BASE_DIR}/ui_tests/"
|
||||||
before_script: [] # no pipenv
|
before_script: [] # no pipenv
|
||||||
|
@ -2,7 +2,6 @@ image: registry.gitlab.com/satoshilabs/trezor/trezor-firmware/environment
|
|||||||
|
|
||||||
core unix coverage posttest:
|
core unix coverage posttest:
|
||||||
stage: posttest
|
stage: posttest
|
||||||
extends: .core_job
|
|
||||||
dependencies:
|
dependencies:
|
||||||
- core device test
|
- core device test
|
||||||
- core monero test
|
- core monero test
|
||||||
@ -22,7 +21,6 @@ core unix coverage posttest:
|
|||||||
|
|
||||||
core unix ui changes:
|
core unix ui changes:
|
||||||
stage: posttest
|
stage: posttest
|
||||||
extends: .core_job
|
|
||||||
except:
|
except:
|
||||||
- master
|
- master
|
||||||
dependencies:
|
dependencies:
|
||||||
|
14
ci/test.yml
14
ci/test.yml
@ -4,7 +4,6 @@ image: registry.gitlab.com/satoshilabs/trezor/trezor-firmware/environment
|
|||||||
|
|
||||||
core unit test:
|
core unit test:
|
||||||
stage: test
|
stage: test
|
||||||
extends: .core_job
|
|
||||||
dependencies:
|
dependencies:
|
||||||
- core unix regular build
|
- core unix regular build
|
||||||
script:
|
script:
|
||||||
@ -13,7 +12,6 @@ core unit test:
|
|||||||
|
|
||||||
core device ui test:
|
core device ui test:
|
||||||
stage: test
|
stage: test
|
||||||
extends: .core_job
|
|
||||||
dependencies:
|
dependencies:
|
||||||
- core unix frozen debug build
|
- core unix frozen debug build
|
||||||
script:
|
script:
|
||||||
@ -38,7 +36,6 @@ core device ui test:
|
|||||||
|
|
||||||
core device test:
|
core device test:
|
||||||
stage: test
|
stage: test
|
||||||
extends: .core_job
|
|
||||||
dependencies:
|
dependencies:
|
||||||
- core unix frozen debug build
|
- core unix frozen debug build
|
||||||
variables:
|
variables:
|
||||||
@ -60,7 +57,6 @@ core device test:
|
|||||||
|
|
||||||
core btconly device test:
|
core btconly device test:
|
||||||
stage: test
|
stage: test
|
||||||
extends: .core_job
|
|
||||||
dependencies:
|
dependencies:
|
||||||
- core unix frozen btconly debug build
|
- core unix frozen btconly debug build
|
||||||
variables:
|
variables:
|
||||||
@ -81,7 +77,6 @@ core btconly device test:
|
|||||||
|
|
||||||
core monero test:
|
core monero test:
|
||||||
stage: test
|
stage: test
|
||||||
extends: .core_job
|
|
||||||
dependencies:
|
dependencies:
|
||||||
- core unix frozen debug build
|
- core unix frozen debug build
|
||||||
variables:
|
variables:
|
||||||
@ -100,7 +95,6 @@ core monero test:
|
|||||||
|
|
||||||
core u2f test:
|
core u2f test:
|
||||||
stage: test
|
stage: test
|
||||||
extends: .core_job
|
|
||||||
dependencies:
|
dependencies:
|
||||||
- core unix frozen debug build
|
- core unix frozen debug build
|
||||||
variables:
|
variables:
|
||||||
@ -120,7 +114,6 @@ core u2f test:
|
|||||||
|
|
||||||
core fido2 test:
|
core fido2 test:
|
||||||
stage: test
|
stage: test
|
||||||
extends: .core_job
|
|
||||||
dependencies:
|
dependencies:
|
||||||
- core unix frozen debug build
|
- core unix frozen debug build
|
||||||
variables:
|
variables:
|
||||||
@ -142,7 +135,6 @@ core fido2 test:
|
|||||||
|
|
||||||
core click test:
|
core click test:
|
||||||
stage: test
|
stage: test
|
||||||
extends: .core_job
|
|
||||||
dependencies:
|
dependencies:
|
||||||
- core unix frozen debug build
|
- core unix frozen debug build
|
||||||
script:
|
script:
|
||||||
@ -160,7 +152,6 @@ core click test:
|
|||||||
|
|
||||||
core upgrade test:
|
core upgrade test:
|
||||||
stage: test
|
stage: test
|
||||||
extends: .core_job
|
|
||||||
dependencies:
|
dependencies:
|
||||||
- core unix frozen debug build
|
- core unix frozen debug build
|
||||||
variables:
|
variables:
|
||||||
@ -179,7 +170,6 @@ core upgrade test:
|
|||||||
|
|
||||||
core persistence test:
|
core persistence test:
|
||||||
stage: test
|
stage: test
|
||||||
extends: .core_job
|
|
||||||
dependencies:
|
dependencies:
|
||||||
- core unix frozen debug build
|
- core unix frozen debug build
|
||||||
script:
|
script:
|
||||||
@ -225,7 +215,6 @@ crypto test:
|
|||||||
|
|
||||||
legacy test:
|
legacy test:
|
||||||
stage: test
|
stage: test
|
||||||
extends: .legacy_job
|
|
||||||
dependencies:
|
dependencies:
|
||||||
- legacy emu regular build
|
- legacy emu regular build
|
||||||
variables:
|
variables:
|
||||||
@ -244,7 +233,6 @@ legacy test:
|
|||||||
|
|
||||||
legacy btconly test:
|
legacy btconly test:
|
||||||
stage: test
|
stage: test
|
||||||
extends: .legacy_job
|
|
||||||
dependencies:
|
dependencies:
|
||||||
- legacy emu btconly build
|
- legacy emu btconly build
|
||||||
variables:
|
variables:
|
||||||
@ -266,7 +254,6 @@ legacy btconly test:
|
|||||||
|
|
||||||
legacy upgrade test:
|
legacy upgrade test:
|
||||||
stage: test
|
stage: test
|
||||||
extends: .legacy_job
|
|
||||||
dependencies:
|
dependencies:
|
||||||
- legacy emu regular build
|
- legacy emu regular build
|
||||||
variables:
|
variables:
|
||||||
@ -324,7 +311,6 @@ storage test:
|
|||||||
# Hardware
|
# Hardware
|
||||||
hardware legacy device test:
|
hardware legacy device test:
|
||||||
stage: test
|
stage: test
|
||||||
extends: .legacy_job
|
|
||||||
only:
|
only:
|
||||||
- schedules # nightly build
|
- schedules # nightly build
|
||||||
- /^legacy\//
|
- /^legacy\//
|
||||||
|
Loading…
Reference in New Issue
Block a user