ci: fix change detection in master builds (#8382)

This commit is contained in:
André Silva 2018-04-12 14:53:54 +01:00 committed by Afri Schoedon
parent 16f435b906
commit bc2f5586ee
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
#ARGUMENT test for RUST and COVERAGE
set -e # fail on any error
set -u # treat unset variables as error
if [[ "$CI_COMMIT_REF_NAME" = "beta" || "$CI_COMMIT_REF_NAME" = "stable" ]]; then
if [[ "$CI_COMMIT_REF_NAME" = "master" || "$CI_COMMIT_REF_NAME" = "beta" || "$CI_COMMIT_REF_NAME" = "stable" ]]; then
export GIT_COMPARE=$CI_COMMIT_REF_NAME~;
else
export GIT_COMPARE=master;