diff options
author | 2017-10-23 15:26:14 +0100 | |
---|---|---|
committer | 2017-11-05 15:53:46 +0100 | |
commit | 3e869e04be9c0c8b5ab42e7107c70c82c6896631 (patch) | |
tree | 9dea08f86c07f30342afbef807d17c4316bd1b92 /.gitlab-ci.yml.in | |
parent | 8fbff9651bdb1cb74c20d751bdc175ea315cfbff (diff) | |
download | buildroot-3e869e04be9c0c8b5ab42e7107c70c82c6896631.tar.gz buildroot-3e869e04be9c0c8b5ab42e7107c70c82c6896631.tar.bz2 |
.gitlab-ci.yml: use gitlab 9.0 varaible names
Gitlab 9.0 prefers "job" instead of "build" for CI variables names.
http://docs.gitlab.com/ce/ci/variables/README.html#9-0-renaming
Signed-off-by: Thomas Preston <thomas.preston@codethink.co.uk>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Diffstat (limited to '.gitlab-ci.yml.in')
-rw-r--r-- | .gitlab-ci.yml.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci.yml.in b/.gitlab-ci.yml.in index 3abf7d5313..33c7b13725 100644 --- a/.gitlab-ci.yml.in +++ b/.gitlab-ci.yml.in @@ -8,7 +8,7 @@ image: buildroot/base .defconfig_script: &defconfig_script - echo 'Configure Buildroot' - - make ${CI_BUILD_NAME} + - make ${CI_JOB_NAME} - echo 'Build buildroot' - | make > >(tee build.log |grep '>>>') 2>&1 || { @@ -51,7 +51,7 @@ check-DEVELOPERS: # runner will clean up those files for us. # Multiply every emulator timeout by 10 to avoid sporadic failures in # elastic runners. - script: ./support/testing/run-tests -o test-output/ -d test-dl/ -k --timeout-multiplier 10 ${CI_BUILD_NAME} + script: ./support/testing/run-tests -o test-output/ -d test-dl/ -k --timeout-multiplier 10 ${CI_JOB_NAME} artifacts: when: always expire_in: 2 weeks |