X-Git-Url: https://gerrit.akraino.org/r/gitweb?a=blobdiff_plain;f=jjb%2Fshell%2Finstall_go.sh;fp=jjb%2Fshell%2Finstall_go.sh;h=a9f6ffdb3fa9ace4b12bff45146c80b4520c37b7;hb=2fe3ecd2b74ba35fa5985564f6f797756752e39f;hp=0000000000000000000000000000000000000000;hpb=3173b73ad384c773b1bd1b748b75fe625eff91b3;p=ci-management.git diff --git a/jjb/shell/install_go.sh b/jjb/shell/install_go.sh new file mode 100755 index 0000000..a9f6ffd --- /dev/null +++ b/jjb/shell/install_go.sh @@ -0,0 +1,31 @@ +#!/bin/bash +# +# Copyright (c) 2019 Red Hat. 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. + +if [ -z "${GO_URL}" ]; then + GO_URL='https://dl.google.com/go/' +fi + +if [ -z "${GO_VERSION}" ]; then + GO_VERSION='go1.12.linux-amd64.tar.gz' +fi + +set -e -u -x -o pipefail + +echo "---> Installing golang from ${GO_URL} with version ${GO_VERSION}" + +# install go +wget ${GO_URL}/${GO_VERSION} +sudo tar -C /usr/local -xzf ${GO_VERSION}