Merge "[iec] Multiple operating systems support"
[ci-management.git] / jjb / shell / build_openshift_install_libvirt_binary.sh
1 #!/bin/bash -l
2 #
3 # Copyright (c) 2019 Red Hat
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 #        http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 set -e -u -x -o pipefail
17
18 export PATH=$PATH:/usr/local/go/bin:/usr/local/bin
19 KNI_PATH='src/gerrit.akraino.org/kni/installer'
20
21 echo '---> Building Openshift Installer binary with libvirt support'
22
23
24 # move to right directory in GOPATH
25 mkdir -p ${WORKSPACE}/${KNI_PATH}
26 export GOPATH=${WORKSPACE}
27 mv cmd pkg vendor ${WORKSPACE}/${KNI_PATH}/
28
29 # first build kni installer
30 make build 2>&1 | tee ${WORKSPACE}/build.log
31
32 # now build the openshift-install binary and copy to gopath
33 make binary 2>&1 | tee ${WORKSPACE}/binary.log
34
35 # publish openshift-install binary in a versioned way
36 source /tmp/ocp_installer_version
37 export NEXUS_URL=https://nexus.akraino.org
38 export GROUP_ID=org.akraino.kni
39 export NEXUS_REPO_ID=snapshots
40 export ARTIFACT_ID=openshift-install
41 export VERSION=$(echo $INSTALLER_GIT_TAG | sed 's/^v//')
42 export PACKAGING=bin
43 export FILE=bin/openshift-install
44 lftools deploy file $NEXUS_URL $NEXUS_REPO_ID $GROUP_ID $ARTIFACT_ID $VERSION $PACKAGING $FILE