From 0d304e582d643893f5e139eb5126c793bc82ae6d Mon Sep 17 00:00:00 2001
From: Varac <varac@leap.se>
Date: Thu, 29 Jun 2017 20:05:17 +0200
Subject: [PATCH] [CI] Fix node name for local tests

---
 tests/platform-ci/ci-build.sh | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/tests/platform-ci/ci-build.sh b/tests/platform-ci/ci-build.sh
index 88856511..9332c12c 100755
--- a/tests/platform-ci/ci-build.sh
+++ b/tests/platform-ci/ci-build.sh
@@ -68,12 +68,14 @@ test() {
 }
 
 build_from_scratch() {
-  # create node(s) with unique id so we can run tests in parallel
-  NAME="citest${CI_BUILD_ID:-0}"
-  # when using gitlab-runner locally, CI_BUILD_ID is always 1 which
+  # when using gitlab-runner locally, CI_JOB_ID is always 1 which
   # will conflict with running/terminating AWS instances in subsequent runs
   # therefore we pick a random number in this case
-  [ "${CI_BUILD_ID:-0}" -eq "1" ] && NAME+="000${RANDOM}"
+  [ "${CI_JOB_ID}" == "1" ] && CI_JOB_ID="000${RANDOM}"
+
+  # create node(s) with unique id so we can run tests in parallel
+  NAME="citest${CI_JOB_ID:-0}"
+
 
   TAG='single'
   SERVICES='couchdb,soledad,mx,webapp,tor,monitor'
-- 
GitLab