Skip to content

Commit

Permalink
ci: upgrade go to 1.22
Browse files Browse the repository at this point in the history
  • Loading branch information
siddarthkay committed Jan 16, 2025
1 parent e5c4d0a commit 1732ddd
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions ci/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ RUN wget https://github.com/Kitware/CMake/releases/download/v3.22.1/cmake-3.22.1
ENV PATH="/opt/cmake/bin:${PATH}"

# Installing Golang
RUN GOLANG_SHA256="e330e5d977bf4f3bdc157bc46cf41afa5b13d66c914e12fd6b694ccda65fcf92" \
&& GOLANG_TARBALL="go1.21.10.linux-amd64.tar.gz" \
RUN GOLANG_SHA256="8920ea521bad8f6b7bc377b4824982e011c19af27df88a815e3586ea895f1b36" \
&& GOLANG_TARBALL="go1.22.3.linux-amd64.tar.gz" \
&& wget -q "https://dl.google.com/go/${GOLANG_TARBALL}" \
&& echo "${GOLANG_SHA256} ${GOLANG_TARBALL}" | sha256sum -c \
&& sudo tar -C /usr/local -xzf "${GOLANG_TARBALL}" \
Expand Down
6 changes: 3 additions & 3 deletions scripts/macos_build_setup.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
set -eo pipefail

GO_VERSION="1.19.5"
GO_VERSION="1.22.3"
GO_INSTALL_DIR="/usr/local/go"
QT_VERSION="5.15.2"
QT_INSTALL_DIR="/usr/local/qt"
Expand Down Expand Up @@ -42,8 +42,8 @@ function install_golang {
fi
declare -A GO_SHA256_MAP
GO_SHA256_MAP=(
["amd64"]="242b099b5b9bd9c5d4d25c041216bc75abcdf8e0541aec975eeabcbce61ad47f"
["arm64"]="61bd4f7f2d209e2a6a7ce17787fc5fea52fb11cc9efb3d8471187a8b39ce0dc9"
["amd64"]="610e48c1df4d2f852de8bc2e7fd2dc1521aac216f0c0026625db12f67f192024"
["arm64"]="02abeab3f4b8981232237ebd88f0a9bad933bc9621791cd7720a9ca29eacbe9d"
)
echo "Install GoLang ${GO_VERSION}"
GO_ARCH=$(get_go_arch)
Expand Down
8 changes: 4 additions & 4 deletions scripts/ubuntu_build_setup.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
set -eo pipefail

GO_VERSION="1.19.5"
GO_VERSION="1.22.3"
GO_INSTALL_DIR="/usr/local/go"
QT_VERSION="5.15.2"
QT_INSTALL_DIR="/opt/qt"
Expand Down Expand Up @@ -66,9 +66,9 @@ function install_golang {
fi
declare -A GO_SHA256_MAP
GO_SHA256_MAP=(
["amd64"]="698ef3243972a51ddb4028e4a1ac63dc6d60821bf18e59a807e051fee0a385bd"
["arm64"]="105889992ee4b1d40c7c108555222ca70ae43fccb42e20fbf1eebb822f5e72c6"
["armv6l"]="0b75ca23061a9996840111f5f19092a1bdbc42ec1ae25237ed2eec1c838bd819"
["amd64"]="8920ea521bad8f6b7bc377b4824982e011c19af27df88a815e3586ea895f1b36"
["arm64"]="6c33e52a5b26e7aa021b94475587fce80043a727a54ceb0eee2f9fc160646434"
["armv6l"]="f2bacad20cd2b96f23a86d4826525d42b229fd431cc6d0dec61ff3bc448ef46e"
)
echo "Install GoLang ${GO_VERSION}"
GO_OS=$(uname -s | tr '[:upper:]' '[:lower:]')
Expand Down
2 changes: 1 addition & 1 deletion scripts/windows_build_setup.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ function Install-Dependencies {
if (!(scoop bucket list | Where { $_.Name -eq "extras" })) {
scoop bucket add extras
}
scoop install --global go@1.21.10
scoop install --global go@1.22.3
scoop install --global protobuf@3.20.0
scoop install --global vcredist2022
scoop install --global `
Expand Down
2 changes: 1 addition & 1 deletion vendor/status-go
Submodule status-go updated 109 files

0 comments on commit 1732ddd

Please sign in to comment.