summaryrefslogtreecommitdiffstats
path: root/jjb/nsh_sfc/include-raw-nsh_sfc-pkg-push.sh
diff options
context:
space:
mode:
Diffstat (limited to 'jjb/nsh_sfc/include-raw-nsh_sfc-pkg-push.sh')
-rw-r--r--jjb/nsh_sfc/include-raw-nsh_sfc-pkg-push.sh44
1 files changed, 0 insertions, 44 deletions
diff --git a/jjb/nsh_sfc/include-raw-nsh_sfc-pkg-push.sh b/jjb/nsh_sfc/include-raw-nsh_sfc-pkg-push.sh
deleted file mode 100644
index 500433e4..00000000
--- a/jjb/nsh_sfc/include-raw-nsh_sfc-pkg-push.sh
+++ /dev/null
@@ -1,44 +0,0 @@
-#!/bin/bash
-# basic build script example
-set -e -o pipefail
-echo "Looking for jars/debs/rpms to publish"
-if [ "${OS}" == "ubuntu1604" ]; then
- # Find the files
- DEBS=$(find . -type f -iname '*.deb')
- echo "Found DEBS=${DEBS}"
- for i in $DEBS
- do
- push_deb "$i"
- done
-
- export JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64/
- export JAVAC=${JAVA_HOME}/bin/javac
- export PATH=${JAVA_HOME}/bin/:${PATH}
- cd nsh-plugin/build/java/jvpp
- $MVN deploy \
- -gs "$GLOBAL_SETTINGS_FILE" -s "$SETTINGS_FILE"
- cd -
-
-elif [ "${OS}" == "ubuntu1604" ]; then
-
- # Find the files
- DEBS=$(find . -type f -iname '*.deb')
- echo "Found DEBS=${DEBS}"
- for i in $DEBS
- do
- push_deb "$i"
- done
-
-elif [ "${OS}" == "centos7" ]; then
- # Find the files
- RPMS=$(find . -type f -iname '*.rpm')
- SRPMS=$(find . -type f -iname '*.srpm')
- SRCRPMS=$(find . -type f -name '*.src.rpm')
- echo "Found RPMS=${RPMS}"
- echo "Found SRPMS=${SRPMS}"
- echo "Found SRCRPMS=${SRCRPMS}"
- for i in $RPMS $SRPMS $SRCRPMS
- do
- push_rpm "$i"
- done
-fi