You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@madlib.apache.org by nj...@apache.org on 2017/12/01 21:20:09 UTC

madlib git commit: Infra: Install MADlib on non-default schema in Jenkins

Repository: madlib
Updated Branches:
  refs/heads/master 0f34aaf24 -> 775afd05d


Infra: Install MADlib on non-default schema in Jenkins

Install MADlib on schema `mad` instead of default schema
`madlib` for the Jenkins PR and Master CI builds.
This would help us identify issues that correspond to
hard-coding `madlib` in the code/tests.

Closes #207


Project: http://git-wip-us.apache.org/repos/asf/madlib/repo
Commit: http://git-wip-us.apache.org/repos/asf/madlib/commit/775afd05
Tree: http://git-wip-us.apache.org/repos/asf/madlib/tree/775afd05
Diff: http://git-wip-us.apache.org/repos/asf/madlib/diff/775afd05

Branch: refs/heads/master
Commit: 775afd05d78dd41960dc19ae93ab2fe785fa5035
Parents: 0f34aaf
Author: Nandish Jayaram <nj...@apache.org>
Authored: Thu Nov 30 15:05:27 2017 -0800
Committer: Nandish Jayaram <nj...@apache.org>
Committed: Fri Dec 1 13:16:25 2017 -0800

----------------------------------------------------------------------
 tool/jenkins/jenkins_build.sh | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/madlib/blob/775afd05/tool/jenkins/jenkins_build.sh
----------------------------------------------------------------------
diff --git a/tool/jenkins/jenkins_build.sh b/tool/jenkins/jenkins_build.sh
index 3afc8b8..0dce943 100644
--- a/tool/jenkins/jenkins_build.sh
+++ b/tool/jenkins/jenkins_build.sh
@@ -69,17 +69,17 @@ docker exec madlib bash -c 'rm -rf /build; mkdir /build; cd /build; cmake ../mad
 echo "---------- Installing and running install-check --------------------"
 # Install MADlib and run install check
 cat <<EOF
-docker exec madlib bash -c '/build/src/bin/madpack -p postgres -c postgres/postgres@localhost:5432/postgres install' | tee $workdir/logs/madlib_install.log
+docker exec madlib bash -c '/build/src/bin/madpack -s mad -p postgres -c postgres/postgres@localhost:5432/postgres install' | tee $workdir/logs/madlib_install.log
 EOF
-docker exec madlib bash -c '/build/src/bin/madpack -p postgres -c postgres/postgres@localhost:5432/postgres install' | tee $workdir/logs/madlib_install.log
+docker exec madlib bash -c '/build/src/bin/madpack -s mad -p postgres -c postgres/postgres@localhost:5432/postgres install' | tee $workdir/logs/madlib_install.log
 
 cat <<EOF
 docker exec madlib bash -c 'mkdir /tmp'
-docker exec madlib bash -c '/build/src/bin/madpack -p postgres  -c postgres/postgres@localhost:5432/postgres -d /tmp install-check' | tee $workdir/logs/madlib_install_check.log
+docker exec madlib bash -c '/build/src/bin/madpack -s mad -p postgres  -c postgres/postgres@localhost:5432/postgres -d /tmp install-check' | tee $workdir/logs/madlib_install_check.log
 EOF
 
 docker exec madlib bash -c 'mkdir /tmp'
-docker exec madlib bash -c '/build/src/bin/madpack -p postgres  -c postgres/postgres@localhost:5432/postgres -d /tmp install-check' | tee $workdir/logs/madlib_install_check.log
+docker exec madlib bash -c '/build/src/bin/madpack -s mad -p postgres  -c postgres/postgres@localhost:5432/postgres -d /tmp install-check' | tee $workdir/logs/madlib_install_check.log
 
 echo "--------- Copying packages -----------------"
 echo "docker cp madlib:build $workdir"