1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-18 22:09:07 +00:00
trezor-firmware/ci/prebuild.yml

44 lines
1.1 KiB
YAML
Raw Normal View History

2020-06-07 19:49:06 +00:00
image: registry.gitlab.com/satoshilabs/trezor/trezor-firmware/trezor-firmware-env.nix
style prebuild:
stage: prebuild
variables:
GIT_SUBMODULE_STRATEGY: "none"
script:
- nix-shell --run "poetry run make style_check"
common prebuild:
stage: prebuild
script:
- nix-shell --run "poetry run make defs_check"
2019-05-17 13:14:41 +00:00
gen prebuild:
2019-05-17 13:14:41 +00:00
stage: prebuild
script:
- nix-shell --run "poetry run make gen_check"
editor prebuild:
stage: prebuild
script:
- nix-shell --run "make editor_check"
2020-11-11 13:23:28 +00:00
yaml prebuild:
stage: prebuild
script:
- nix-shell --run "poetry run make yaml_check"
release commit messages prebuild:
stage: prebuild
2020-08-04 19:21:44 +00:00
before_script: [] # nothing needed
variables:
# We need to clone the repo properly so we can work with origin/master.
2020-08-04 19:21:44 +00:00
GIT_STRATEGY: clone
only:
refs:
- /^release\//
variables:
# We want this to run on gitlab.com/satoshilabs/trezor/trezor-firmware only.
- $CI_PROJECT_PATH_SLUG == 'satoshilabs-trezor-trezor-firmware'
script:
2020-06-07 19:49:06 +00:00
- nix-shell --run "ci/check_release_commit_messages.sh"