X-Git-Url: https://gerrit.akraino.org/r/gitweb?p=ci-management.git;a=blobdiff_plain;f=jjb%2Fshell%2Fbuild_kni_binary.sh;fp=jjb%2Fshell%2Fbuild_kni_binary.sh;h=0000000000000000000000000000000000000000;hp=36e78b322dfb526f7e79e325ca267e6b80b3cc99;hb=d12a6f76fd88e24762623b65142d0de36c610bae;hpb=5c29e15cd20f4fd66464b9d8257e027eb01c5fd4 diff --git a/jjb/shell/build_kni_binary.sh b/jjb/shell/build_kni_binary.sh deleted file mode 100644 index 36e78b3..0000000 --- a/jjb/shell/build_kni_binary.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/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 - -# then build the binary -make binary -STATUS=$? -popd - -exit $STATUS