Skip to content

Commit 6136a96

Browse files
committed
ci: Rename RUN_CI_ON_HOST to DANGER_RUN_CI_ON_HOST
1 parent 97ba77a commit 6136a96

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.cirrus.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ task:
3737
timeout_in: 60m
3838
env:
3939
MAKEJOBS: "-j9"
40-
RUN_CI_ON_HOST: "1"
40+
DANGER_RUN_CI_ON_HOST: "1"
4141
TEST_RUNNER_PORT_MIN: "14000" # Must be larger than 12321, which is used for the http cache. See https://cirrus-ci.org/guide/writing-tasks/#http-cache
4242
CCACHE_SIZE: "200M"
4343
CCACHE_DIR: "/tmp/ccache_dir"

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ jobs:
104104
- libdb-dev
105105
- libevent-dev
106106
env: >-
107-
RUN_CI_ON_HOST=true
107+
DANGER_RUN_CI_ON_HOST=true
108108
CI_USE_APT_INSTALL=no
109109
FILE_ENV="./ci/test/00_setup_env_s390x_host.sh"
110110
@@ -194,6 +194,6 @@ jobs:
194194
- ccache
195195
- zeromq
196196
env: >-
197-
RUN_CI_ON_HOST=true
197+
DANGER_RUN_CI_ON_HOST=true
198198
CI_USE_APT_INSTALL=no
199199
FILE_ENV="./ci/test/00_setup_env_mac_host.sh"

ci/test/04_install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ fi
3535

3636
export P_CI_DIR="$PWD"
3737

38-
if [ -z "$RUN_CI_ON_HOST" ]; then
38+
if [ -z "$DANGER_RUN_CI_ON_HOST" ]; then
3939
echo "Creating $DOCKER_NAME_TAG container to run in"
4040
${CI_RETRY_EXE} docker pull "$DOCKER_NAME_TAG"
4141

@@ -91,7 +91,7 @@ export DIR_FUZZ_IN=${DIR_QA_ASSETS}/fuzz_seed_corpus/
9191

9292
DOCKER_EXEC mkdir -p "${BASE_SCRATCH_DIR}/sanitizer-output/"
9393

94-
if [ -z "$RUN_CI_ON_HOST" ]; then
94+
if [ -z "$DANGER_RUN_CI_ON_HOST" ]; then
9595
echo "Create $BASE_ROOT_DIR"
9696
DOCKER_EXEC rsync -a /ro_base/ $BASE_ROOT_DIR
9797
fi

0 commit comments

Comments
 (0)