From: Yolanda Robla Date: Fri, 7 Jun 2019 15:00:18 +0000 (+0200) Subject: Fixes to run in node, and in workspace X-Git-Url: https://gerrit.akraino.org/r/gitweb?p=ci-management.git;a=commitdiff_plain;h=c27ae94ced910c0a48cbfb62e38272cd1e76b842 Fixes to run in node, and in workspace Switched the deployment to 1-node, for less memory requirements. Also fix some issues with WORKSPACE and GOPATH Signed-off-by: Yolanda Robla Change-Id: I1f5b572f0be0dea69d9ffd78d2c4ff5b634a5144 --- diff --git a/jjb/shell/kni_deploy_libvirt.sh b/jjb/shell/kni_deploy_libvirt.sh index 22396e5..527bc71 100755 --- a/jjb/shell/kni_deploy_libvirt.sh +++ b/jjb/shell/kni_deploy_libvirt.sh @@ -17,12 +17,14 @@ set -e -u -x -o pipefail export PATH=$PATH:/usr/local/go/bin:/usr/local/bin -KNI_PATH='go/src/gerrit.akraino.org/kni' +KNI_PATH='src/gerrit.akraino.org/kni/installer' echo '---> Starting kni installer generation' -mkdir -p $HOME/${KNI_PATH}/installer +# move to right directory in GOPATH +mkdir -p ${WORKSPACE}/${KNI_PATH} export GOPATH=${WORKSPACE} +mv cmd pkg vendor ${WORKSPACE}/${KNI_PATH}/ # do a host preparation and cleanup bash utils/prep_host.sh @@ -36,14 +38,14 @@ make build 2>&1 | tee ${WORKSPACE}/build.log # now build the openshift-install binary and copy to gopath make binary 2>&1 | tee ${WORKSPACE}/binary.log -# then start aws deploy +# then start libvirt deploy export MASTER_MEMORY_MB=24000 export CREDENTIALS=file://$(pwd)/akraino-secrets export BASE_REPO="git::https://gerrit.akraino.org/r/kni/templates" -export BASE_PATH="libvirt/3-node" +export BASE_PATH="libvirt/1-node" export SITE_REPO="git::https://gerrit.akraino.org/r/kni/templates" export SETTINGS_PATH="libvirt/sample_settings.yaml" -export INSTALLER_PATH="file://${HOME}/${KNI_PATH}/installer/bin/openshift-install" +export INSTALLER_PATH="file://${WORKSPACE}/bin/openshift-install" make deploy 2>&1 | tee ${WORKSPACE}/libvirt_deploy.log STATUS=$?