https://github.com/kubeflow/katib
Raw File
Tip revision: e1677d027b75274fbcc5e0cf008f3a0e825df38e authored by hougang liu on 21 December 2018, 14:46:13 UTC
add hougangliu as a reviewer
Tip revision: e1677d0
get-vendor-packages.sh
#!/bin/bash

# Copyright 2018 The Kubeflow Authors.
#
# 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.

# This shell script is used to build an image from our argo workflow

set -o errexit
set -o nounset
set -o pipefail

export PATH=${GOPATH}/bin:/usr/local/go/bin:${PATH}
REGISTRY="${GCP_REGISTRY}"
PROJECT="${GCP_PROJECT}"
GO_DIR=${GOPATH}/src/github.com/${REPO_OWNER}/${REPO_NAME}
VERSION=$(git describe --tags --always --dirty)
CPATH=$PWD

echo "Copy source to GOPATH"
echo "copy $PWD to ${GO_DIR}"
mkdir -p ${GO_DIR}
cp -r * ${GO_DIR}
go get -u github.com/golang/dep/cmd/dep
cd ${GO_DIR}
dep ensure
mv ${GO_DIR}/vendor ${CPATH}/vendor

back to top