From 4f174572bcf2e193a5144714b2e56bb3a79720a1 Mon Sep 17 00:00:00 2001 From: Shishir Date: Wed, 12 Oct 2022 13:31:11 -0700 Subject: [PATCH] Update golang to 1.19.1. (#146) Signed-off-by: Shishir Mahajan --- Vagrantfile | 8 ++++---- tests/run_tests.sh | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index bca82e5..bb2f7a7 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -28,12 +28,12 @@ Vagrant.configure("2") do |config| # without keeping HOME env, 'sudo make test' will try to find files under /root/go/ echo "Defaults env_keep += HOME" | sudo tee /etc/sudoers.d/keep_home - # Install golang-1.17 + # Install golang-1.19.1 if [ ! -f "/usr/local/go/bin/go" ]; then - curl -s -L -o go1.17.linux-amd64.tar.gz https://dl.google.com/go/go1.17.linux-amd64.tar.gz - sudo tar -C /usr/local -xzf go1.17.linux-amd64.tar.gz + curl -s -L -o go1.19.1.linux-amd64.tar.gz https://dl.google.com/go/go1.19.1.linux-amd64.tar.gz + sudo tar -C /usr/local -xzf go1.19.1.linux-amd64.tar.gz sudo chmod +x /usr/local/go - rm -f go1.17.linux-amd64.tar.gz + rm -f go1.19.1.linux-amd64.tar.gz fi # Install nomad-1.1.12 diff --git a/tests/run_tests.sh b/tests/run_tests.sh index 918ecb6..23f830a 100755 --- a/tests/run_tests.sh +++ b/tests/run_tests.sh @@ -11,7 +11,7 @@ if [ -e /home/runner ]; then else export GOPATH=$HOME/go fi -export GO_VERSION=1.17 +export GO_VERSION=1.19.1 export SRCDIR=`dirname $0` source $SRCDIR/utils.sh @@ -121,11 +121,11 @@ EOF sudo systemctl start containerd is_systemd_service_active "containerd.service" false - # Remove default golang (1.7.3) and install a custom version (1.17) of golang. + # Remove default golang (1.7.3) and install a custom version (1.19.1) of golang. # This is required for supporting go mod, and to be able to compile nomad-driver-containerd. sudo rm -rf /usr/local/go - # Install golang 1.17 + # Install golang 1.19.1 curl -L -o go${GO_VERSION}.linux-amd64.tar.gz https://dl.google.com/go/go${GO_VERSION}.linux-amd64.tar.gz sudo tar -C /usr/local -xzf go${GO_VERSION}.linux-amd64.tar.gz sudo chmod +x /usr/local/go