4f6bdf85e1
* enable arm64 builds * Add `[skip build-base]` conditional for PRs * only setup arm64 arch in qemu * fix permission java-tools * go default to 1.20 and fix pwsh * exclude lib32z1 for arm64 * increase npm timeout for qemu * Try to speed up npm under qemu * make npm verbose * Use http registry * Another test * Use less build resources * fix dockerhub tag * Fix building
62 lines
1.9 KiB
Bash
Executable File
62 lines
1.9 KiB
Bash
Executable File
#!/bin/bash
|
|
# shellcheck disable=SC1091,SC2174
|
|
|
|
. /etc/environment
|
|
|
|
set -Eeuxo pipefail
|
|
|
|
printf "\n\t🐋 Installing Go(lang) 🐋\t\n"
|
|
|
|
wget -qO- "$(jq -r '.toolcache[] | select(.name == "go") | .url' "/imagegeneration/toolset.json")" > "/tmp/go-toolset.json"
|
|
|
|
go_arch() {
|
|
case "$(uname -m)" in
|
|
'x86_64') echo 'amd64' ;;
|
|
'aarch64') echo 'arm64' ;;
|
|
esac
|
|
}
|
|
|
|
toolcache_arch() {
|
|
case "$(uname -m)" in
|
|
'aarch64') echo 'arm64' ;;
|
|
'x86_64') echo 'x64' ;;
|
|
'armv7l') echo 'armv7l' ;;
|
|
*) exit 1 ;;
|
|
esac
|
|
}
|
|
|
|
DEFVER=$(jq -r '.toolcache[] | select(.name == "go") | .default' "/imagegeneration/toolset.json")
|
|
for V in $(jq -r '.toolcache[] | select(.name == "go") | .versions[]' "/imagegeneration/toolset.json"); do
|
|
printf "\n\t🐋 Installing GO=%s 🐋\t\n" "${V}"
|
|
VER=$(jq -r "[.[] | select(.version|test(\"^${V}\"))][0].version" "/tmp/go-toolset.json")
|
|
GOPATH="$AGENT_TOOLSDIRECTORY/go/${VER}/$(toolcache_arch)"
|
|
|
|
mkdir -v -m 0777 -p "$GOPATH"
|
|
DL_VER="${VER}"
|
|
# hack (1.21.0 has the 0 in it's url)
|
|
# TODO: i hate shell scripts, please can I have powershell on linux and no, python is not a solution, it should die
|
|
# TODO: write own thing to get links from go.dev and versions from actions/go-versions, mash it together, ?????, works
|
|
#if [[ "$(echo ${VER} | cut -d. -f3)" == "0" ]]; then
|
|
# DL_VER=$(echo "${VER}" | cut -d. -f-2)
|
|
#fi
|
|
wget -qO- "https://golang.org/dl/go${DL_VER}.linux-$(go_arch).tar.gz" | tar -zxf - --strip-components=1 -C "$GOPATH"
|
|
|
|
# ENVVAR="${V//\./_}"
|
|
# echo "${ENVVAR}=${GOPATH}" >>/etc/environment
|
|
|
|
# Create a complete file
|
|
touch "${GOPATH}.complete"
|
|
|
|
printf "\n\t🐋 Installed GO 🐋\t\n"
|
|
"$GOPATH/bin/go" version
|
|
|
|
if [[ "${V}" == "$DEFVER" ]]; then
|
|
ln -s "$GOPATH/bin"/* /usr/bin/
|
|
fi
|
|
done
|
|
|
|
printf "\n\t🐋 Cleaning image 🐋\t\n"
|
|
apt-get clean
|
|
rm -rf /var/cache/* /var/log/* /var/lib/apt/lists/* /tmp/* || echo 'Failed to delete directories'
|
|
printf "\n\t🐋 Cleaned up image 🐋\t\n"
|