mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-04 22:51:51 +00:00
73c600d3f5
Break off hardware test tasks into separate file.
44 lines
1.2 KiB
YAML
44 lines
1.2 KiB
YAML
variables:
|
|
# See https://docs.gitlab.com/ce/user/project/pipelines/settings.html#git-strategy
|
|
GIT_STRATEGY: "clone"
|
|
|
|
# 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` in parallel
|
|
MAKEFLAGS: "-j10"
|
|
|
|
# Apply timeout to pytest-based tests
|
|
PYTEST_TIMEOUT: "300"
|
|
|
|
# No need for TLS because everything runs on the same machine
|
|
DOCKER_TLS_CERTDIR: ""
|
|
stages:
|
|
- environment
|
|
- prebuild
|
|
- build
|
|
- test
|
|
- posttest
|
|
- deploy
|
|
|
|
before_script:
|
|
- . $HOME/.nix-profile/etc/profile.d/nix.sh || true
|
|
- nix-shell --run "poetry install"
|
|
- export LEGACY_VERSION=$(nix-shell --run "./tools/version.sh legacy/firmware/version.h")
|
|
- export CORE_VERSION=$(nix-shell --run "./tools/version.sh core/embed/firmware/version.h")
|
|
|
|
include:
|
|
- ci/environment.yml
|
|
- ci/prebuild.yml
|
|
- ci/build.yml
|
|
- ci/test.yml
|
|
- ci/test-hw.yml
|
|
- ci/posttest.yml
|
|
- ci/deploy.yml
|