1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-12 10:58:59 +00:00
trezor-firmware/.gitlab-ci.yml

70 lines
1.4 KiB
YAML
Raw Normal View History

variables:
2019-04-29 07:54:15 +00:00
# Using git fetch is faster
# See https://docs.gitlab.com/ce/user/project/pipelines/settings.html#git-strategy
GIT_STRATEGY: "fetch"
2019-04-29 07:54:15 +00:00
# Init submodules
2019-04-24 13:05:48 +00:00
# See https://docs.gitlab.com/ee/ci/yaml/#git-submodule-strategy
GIT_SUBMODULE_STRATEGY: "recursive"
2019-04-24 13:05:48 +00:00
# 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"
2019-04-29 07:54:15 +00:00
# Run `make` in parallel
2019-04-24 13:05:48 +00:00
MAKEFLAGS: "-j10"
2019-04-29 07:54:15 +00:00
# Pipenv cache
PIPENV_VENV_IN_PROJECT: "true"
PIPENV_CACHE_DIR: ".cache/"
# No need for TLS because everything runs on the same machine
DOCKER_TLS_CERTDIR: ""
stages:
- environment
2019-04-26 13:33:25 +00:00
- prebuild
- build
- test
- posttest
- deploy
before_script:
- 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:
- ci/environment.yml
- ci/prebuild.yml
- ci/build.yml
- ci/test.yml
- ci/posttest.yml
- ci/deploy.yml