summaryrefslogtreecommitdiffhomepage
path: root/kokoro/ubuntu1604/10_core.sh
diff options
context:
space:
mode:
authorFabricio Voznika <fvoznika@google.com>2019-12-06 20:11:51 -0800
committergVisor bot <gvisor-bot@google.com>2019-12-06 20:13:09 -0800
commit3c2e2f7d12285e6093ecc225e0379fe59e8fd93f (patch)
tree30e82fa0c2e127acd8bd3c5b6363591bde0570a0 /kokoro/ubuntu1604/10_core.sh
parente70636d7f1919bf4c1c1e78ef16af68c50fa141c (diff)
Update Kokoro image to install Golang 1.13
PiperOrigin-RevId: 284308422
Diffstat (limited to 'kokoro/ubuntu1604/10_core.sh')
-rwxr-xr-xkokoro/ubuntu1604/10_core.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/kokoro/ubuntu1604/10_core.sh b/kokoro/ubuntu1604/10_core.sh
index e87a6eee8..46dda6bb1 100755
--- a/kokoro/ubuntu1604/10_core.sh
+++ b/kokoro/ubuntu1604/10_core.sh
@@ -21,8 +21,8 @@ apt-get update && apt-get -y install make git-core build-essential linux-headers
# Install a recent go toolchain.
if ! [[ -d /usr/local/go ]]; then
- wget https://dl.google.com/go/go1.12.linux-amd64.tar.gz
- tar -xvf go1.12.linux-amd64.tar.gz
+ wget https://dl.google.com/go/go1.13.5.linux-amd64.tar.gz
+ tar -xvf go1.13.5.linux-amd64.tar.gz
mv go /usr/local
fi