X-Git-Url: https://gerrit.akraino.org/r/gitweb?a=blobdiff_plain;f=jjb%2Fshell%2Fbuild_kni_installer.sh;fp=jjb%2Fshell%2Fbuild_kni_installer.sh;h=050222971e72d53ad2c902160b1d7b36c4952a5a;hb=2fe3ecd2b74ba35fa5985564f6f797756752e39f;hp=0000000000000000000000000000000000000000;hpb=3173b73ad384c773b1bd1b748b75fe625eff91b3;p=ci-management.git diff --git a/jjb/shell/build_kni_installer.sh b/jjb/shell/build_kni_installer.sh new file mode 100755 index 0000000..0502229 --- /dev/null +++ b/jjb/shell/build_kni_installer.sh @@ -0,0 +1,36 @@ +#!/bin/bash +# +# Copyright (c) 2018 AT&T Intellectual Property. All rights reserved. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +export PATH=$PATH:/usr/local/go/bin +KNI_PATH='go/src/gerrit.akraino.org/kni/' + +set -e -u -x -o pipefail + +echo '---> Starting kni installer generation' + +mkdir -p $HOME/${KNI_PATH}/installer +export GOPATH=$HOME/go + +# move clone to gopath +cp -R ${WORKSPACE}/* $HOME/${KNI_PATH}/installer/ + +# first build kni installer +pushd $HOME/${KNI_PATH}/installer +make build +STATUS=$? +popd + +exit $STATUS