summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas F Herbert <therbert@redhat.com>2016-02-26 16:06:14 -0500
committerThomas F Herbert <therbert@redhat.com>2016-02-26 16:36:23 -0500
commit20b7a916e4799881d29cf11c71d3ea16d08d94ca (patch)
tree79d4886dc5941a574ac6a9b031ed53cae499e615
parente6eee91433297cc61314412bf7b81c969f806aeb (diff)
Fix pathname to script.
This patch fixes bug that is currently blocking the daily build. Change-Id: If3624ea4e93bc42c5fe633b0c30d506f2b70efd0 Signed-off-by: Thomas F Herbert <therbert@redhat.com>
-rwxr-xr-xci/buildovs.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/ci/buildovs.sh b/ci/buildovs.sh
index fead8db..5270f03 100755
--- a/ci/buildovs.sh
+++ b/ci/buildovs.sh
@@ -75,7 +75,7 @@ fi
echo =============================================
echo =======Build ovs rpm with DPDK and test in VM.
echo
-BuildAndTestOVS.sh -d -g master -p none -t
+$BUILD_BASE/BuildAndTestOVS.sh -d -g master -p none -t
#
# Build special version of ovs with patches --TODO
#
@@ -98,7 +98,7 @@ fi
# copy artifacts.
if [[ "$JOB_NAME" =~ "daily" ]]; then
- upload_artifacts.sh
+ $BUILD_BASE/../ci/upload_artifacts.sh
fi
if [ -d $TMP_RELEASE_DIR ]; then
@@ -112,6 +112,6 @@ fi
# Destroy VM if one has been deployed. Also remove any local installation of
# DPDK and OVS
#
-sudo ../ci/clean.sh
+sudo $BUILD_BASE/../ci/clean.sh
exit 0