mirror of
https://ops.gitlab.net/gitlab-org/gitlab-build-images.git
synced 2025-12-09 10:02:56 +01:00
Add Golang 1.11 for build images
Go released a new version this week; https://blog.golang.org/go1.11 which makes go 1.9 EOL. To remove that version from our testing matrix, we should make sure we support 1.11 first. This only creates the 1.11 build images, other projects need to do the cascading changes.
This commit is contained in:
parent
ab727b30d0
commit
2a7a78a829
2 changed files with 9 additions and 1 deletions
|
|
@ -18,6 +18,10 @@ function print_golang_args() {
|
|||
INSTALL_GOLANG_VERSION=1.10
|
||||
GOLANG_DOWNLOAD_SHA256=b5a64335f1490277b585832d1f6c7f8c6c11206cba5cd3f771dcb87b98ad1a33
|
||||
;;
|
||||
1.11)
|
||||
INSTALL_GOLANG_VERSION=1.11
|
||||
GOLANG_DOWNLOAD_SHA256=b3fcf280ff86558e0559e185b601c9eade0fd24c900b4c63cd14d1d38613e499
|
||||
;;
|
||||
*) echo "Unknown golang version $1"; exit 1;
|
||||
esac
|
||||
|
||||
|
|
@ -102,7 +106,7 @@ function print_git_args() {
|
|||
2.18)
|
||||
GIT_VERSION=2.18.0
|
||||
GIT_DOWNLOAD_SHA256=94faf2c0b02a7920b0b46f4961d8e9cad08e81418614102898a55f980fa3e7e4
|
||||
;;
|
||||
;;
|
||||
*) echo "Unknown git version $1"; exit 1;
|
||||
esac
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue