mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-16 04:29:08 +00:00
7c58d7d24e
The core/build-docker.sh si broken, but so it was already in master and is tracked to be fixed in #108.
19 lines
568 B
YAML
19 lines
568 B
YAML
image: registry.corp.sldev.cz/trezor/trezor-firmware/environment
|
|
|
|
prebuild style:
|
|
stage: prebuild
|
|
script:
|
|
- pipenv run make style_check
|
|
- cd core && pipenv run make templates_check # TODO
|
|
|
|
prebuild common:
|
|
stage: prebuild
|
|
script:
|
|
- cd common
|
|
- pipenv run jsonlint defs/*.json
|
|
- pipenv run jsonlint defs/*/*.json
|
|
- pipenv run python tools/cointool.py check
|
|
- pipenv run python tools/support.py check --ignore-missing
|
|
- pipenv run python protob/check.py
|
|
- pipenv run python protob/graph.py protob/*.proto # TODO: artifacts?
|