mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-13 19:18:56 +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.
31 lines
675 B
YAML
31 lines
675 B
YAML
variables:
|
|
# Init submodules.
|
|
# See https://docs.gitlab.com/ee/ci/yaml/#git-submodule-strategy
|
|
GIT_SUBMODULE_STRATEGY: "recursive"
|
|
|
|
# Use shallow cloning to speed up git clone. This can fail, if retrying an older build on CI
|
|
# and the old commit is not in the shallow history any more.
|
|
# See https://docs.gitlab.com/ee/ci/yaml/#shallow-cloning
|
|
GIT_DEPTH: "50"
|
|
|
|
# run make paralel
|
|
MAKEFLAGS: "-j10"
|
|
|
|
stages:
|
|
- environment
|
|
- prebuild
|
|
- build
|
|
- test
|
|
|
|
before_script:
|
|
- pipenv install
|
|
|
|
include:
|
|
- ci/environment.yml
|
|
- ci/prebuild.yml # common, style
|
|
- ci/core.yml
|
|
- ci/legacy.yml
|
|
# - ci/python.yml TODO
|
|
- ci/crypto.yml
|
|
- ci/storage.yml
|