summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorelijah <elijah@riseup.net>2016-08-30 15:31:23 -0700
committerelijah <elijah@riseup.net>2016-09-01 10:13:31 -0700
commitc4afb0b63fdfaef6a7d67917f5b93e353902d36d (patch)
tree90f8cb671a175dadb81a63d8de1f0fa262119035 /bin
parent441a488ac13a6a3cf50d2185f4611f13b54483e7 (diff)
fix paths for gitlab ci
Diffstat (limited to 'bin')
-rwxr-xr-xbin/ci-build.sh22
1 files changed, 0 insertions, 22 deletions
diff --git a/bin/ci-build.sh b/bin/ci-build.sh
deleted file mode 100755
index 248bd9f8..00000000
--- a/bin/ci-build.sh
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/sh
-
-. tests/puppet/provider/.platform-test.conf
-
-# break on every error
-set -e
-
-# create node(s) with unique id so we can run tests in parallel
-export TAG="build${CI_BUILD_ID}"
-[ -d "${PROVIDERDIR}/tags" ] || mkdir "${PROVIDERDIR}/tags"
-echo '{}' > "${PROVIDERDIR}/tags/${TAG}.json"
-
-export IP_SUFFIX_START='100'
-#NODES='rewdevcouch1:couchdb,soledad rewdevmx1:mx rewdevvpn1:openvpn,tor rewdevweb1:webapp,monitor rewdevplain1: rewdevstatic1:static'
-export NODES="single${TAG}:couchdb,soledad,mx,webapp,openvpn,tor,monitor,obfsproxy"
-leap-platform-test add_nodes "$NODES"
-
-leap-platform-test -v init_deploy
-leap-platform-test -v test
-cd tests/puppet/provider
-bundle exec leap info "${TAG}"
-bundle exec leap local destroy "${TAG}"