summaryrefslogtreecommitdiffstats
path: root/jjb/escalator/escalator-build.sh
diff options
context:
space:
mode:
authorTrevor Bramwell <tbramwell@linuxfoundation.org>2019-01-23 14:15:39 -0800
committerAric Gardner <agardner@linuxfoundation.org>2019-01-28 17:31:33 +0000
commit9abcc99b4be9568cba31591aacdb1e01fda5cdf9 (patch)
tree8688df7fd17fab5bfaefb4b6380e70ee34b337b5 /jjb/escalator/escalator-build.sh
parentb22de24d6e5c8a37c0038d28f07fbd257d0f8563 (diff)
Remove Archived Project Jobs
Removes jobs for: - domino - escalator - vnf_forwarding_graph Change-Id: Id1364d38d7f1f8d8e1bb396be7bf84899139973f Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
Diffstat (limited to 'jjb/escalator/escalator-build.sh')
-rwxr-xr-xjjb/escalator/escalator-build.sh33
1 files changed, 0 insertions, 33 deletions
diff --git a/jjb/escalator/escalator-build.sh b/jjb/escalator/escalator-build.sh
deleted file mode 100755
index 0e35c27d9..000000000
--- a/jjb/escalator/escalator-build.sh
+++ /dev/null
@@ -1,33 +0,0 @@
-#!/bin/bash
-echo "--------------------------------------------------------"
-echo "This is escalator build job!"
-echo "--------------------------------------------------------"
-
-# set OPNFV_ARTIFACT_VERSION
-if [[ "$JOB_NAME" =~ "merge" ]]; then
- echo "Building Escalator TAR for a merged change"
- export OPNFV_ARTIFACT_VERSION="gerrit-$GERRIT_CHANGE_NUMBER"
-else
- export OPNFV_ARTIFACT_VERSION=$(date -u +"%Y-%m-%d_%H-%M-%S")
-fi
-
-# build output directory
-OUTPUT_DIR=$WORKSPACE/build_output
-mkdir -p $OUTPUT_DIR
-
-# start the build
-cd $WORKSPACE
-./ci/build.sh $OUTPUT_DIR $OPNFV_ARTIFACT_VERSION
-
-# save information regarding artifact into file
-(
- echo "OPNFV_ARTIFACT_VERSION=$OPNFV_ARTIFACT_VERSION"
- echo "OPNFV_GIT_URL=$(git config --get remote.origin.url)"
- echo "OPNFV_GIT_SHA1=$(git rev-parse HEAD)"
- echo "OPNFV_ARTIFACT_URL=$GS_URL/opnfv-$OPNFV_ARTIFACT_VERSION.bin"
- echo "OPNFV_BUILD_URL=$BUILD_URL"
-) > $WORKSPACE/opnfv.properties
-
-echo
-echo "--------------------------------------------------------"
-echo "Done!"