Skip to content
Snippets Groups Projects
Commit 6bcdfe80 authored by Henrik Triem's avatar Henrik Triem
Browse files

Update provide go to new version and check checksum

parent 50e523ef
No related branches found
No related tags found
No related merge requests found
Pipeline #27427 failed
#!/bin/bash
VERSION_GO="1.18.1"
VERSION_GO="1.19.3"
ARCH_GO="${1:-amd64}"
set -ex
......@@ -9,13 +9,14 @@ echo "Downloading Go Version ${VERSION_GO}"
curl -LO "https://golang.org/dl/go${VERSION_GO}.linux-${ARCH_GO}.tar.gz"
rm -rf /usr/local/go
echo "Unpacking Go"
tar -C /usr/local -xzf "go${VERSION_GO}.linux-${ARCH_GO}.tar.gz"
if [[ $(sha256sum go${VERSION_GO}.linux-${ARCH_GO}.tar.gz) = "74b9640724fd4e6bb0ed2a1bc44ae813a03f1e72a4c76253e2d5c015494430ba go${VERSION_GO}.linux-${ARCH_GO}.tar.gz" ]];
then echo "Unpacking Go";
tar -C /usr/local -xzf "go${VERSION_GO}.linux-${ARCH_GO}.tar.gz";
ln -s /usr/local/go/bin/* /usr/local/bin;
go version;
else
echo "Failed to verify Go checksum!";
fi
echo "Deleting Go Binary Archive"
rm -rf "go${VERSION_GO}.linux-${ARCH_GO}.tar.gz"
ln -s /usr/local/go/bin/* /usr/local/bin
go version
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment