This commit is contained in:
22
scripts/workers/golang.sh
Executable file
22
scripts/workers/golang.sh
Executable file
@@ -0,0 +1,22 @@
|
||||
#!/bin/bash
|
||||
|
||||
# shellcheck disable=SC2154
|
||||
# Line above disables shellcheck linters:
|
||||
# * SC2154 - variable referenced but not assigned (false positive, assigned when sourced arch.sh).
|
||||
|
||||
set -xe
|
||||
|
||||
go_version=1.22.2
|
||||
|
||||
# shellcheck disable=SC2086,SC2046,SC2164
|
||||
cd $(dirname ${BASH_SOURCE[0]})
|
||||
script_path=$(pwd)
|
||||
|
||||
# shellcheck disable=SC1091
|
||||
source "${script_path}/../helpers/arch.sh"
|
||||
|
||||
curl "https://dl.google.com/go/go${go_version}.linux-${arch}.tar.gz" -o "/tmp/go-${arch}.tar.gz"
|
||||
file "/tmp/go-${arch}.tar.gz"
|
||||
tar -xf "/tmp/go-${arch}.tar.gz" -C /usr/local/
|
||||
rm "/tmp/go-${arch}.tar.gz"
|
||||
ln -s /usr/local/go/bin/* /usr/local/bin
|
||||
Reference in New Issue
Block a user