diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ec1e751..b4911ac 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -47,11 +47,11 @@ before_script: # Tests -ruby-2.3-golang-1.8-git-2.14 test: *test_custom -ruby-2.3-golang-1.8-git-2.8 test: *test_custom -ruby-2.3.5-golang-1.8-git-2.14-chrome-63.0-node-8.x-yarn-1.2-postgresql-9.6 test: *test_custom -golang-1.8-git-2.8.4 test: *test_custom -golang-1.8-git-2.14 test: *test_custom +ruby-2.3-golang-1.9-git-2.14 test: *test_custom +ruby-2.3-golang-1.9-git-2.8 test: *test_custom +ruby-2.3.5-golang-1.9-git-2.14-chrome-63.0-node-8.x-yarn-1.2-postgresql-9.6 test: *test_custom +golang-1.9-git-2.8.4 test: *test_custom +golang-1.9-git-2.14 test: *test_custom node-8.9-chrome-63.0-yarn-1.2 test: *test_custom www-gitlab-com test: *test_build @@ -67,11 +67,11 @@ omnibus-gitlab-xenial test: *test_build # Builds -ruby-2.3-golang-1.8-git-2.14: *build_and_deploy_custom -ruby-2.3-golang-1.8-git-2.8: *build_and_deploy_custom -ruby-2.3.5-golang-1.8-git-2.14-chrome-63.0-node-8.x-yarn-1.2-postgresql-9.6: *build_and_deploy_custom -golang-1.8-git-2.8.4: *build_and_deploy_custom -golang-1.8-git-2.14: *build_and_deploy_custom +ruby-2.3-golang-1.9-git-2.14: *build_and_deploy_custom +ruby-2.3-golang-1.9-git-2.8: *build_and_deploy_custom +ruby-2.3.5-golang-1.9-git-2.14-chrome-63.0-node-8.x-yarn-1.2-postgresql-9.6: *build_and_deploy_custom +golang-1.9-git-2.8.4: *build_and_deploy_custom +golang-1.9-git-2.14: *build_and_deploy_custom node-8.9-chrome-63.0-yarn-1.2: *build_and_deploy_custom www-gitlab-com: *build_and_deploy diff --git a/scripts/custom-docker-build b/scripts/custom-docker-build index db65567..af59b81 100755 --- a/scripts/custom-docker-build +++ b/scripts/custom-docker-build @@ -4,12 +4,16 @@ set -e IFS=$'\n\t' function print_golang_args() { - GOLANG_VERSION=$1 - case "$GOLANG_VERSION" in + case "$1" in 1.8) + GOLANG_VERSION=1.8 GOLANG_DOWNLOAD_SHA256=253ab94104ee3923e228a2cb2116e5e462ad3ebaeea06ff04463479d7f12d27ca ;; + 1.9) + GOLANG_VERSION=1.9.2 + GOLANG_DOWNLOAD_SHA256=de874549d9a8d8d8062be05808509c09a88a248e77ec14eb77453530829ac02b + ;; *) echo "Unknown golang version $1"; exit 1; esac @@ -22,7 +26,7 @@ function print_chrome_args() { 60|60.0) CHROME_VERSION=60.0.3112.90-1 ;; 61|61.0) CHROME_VERSION=61.0.3163.100-1 ;; 62|62.0) CHROME_VERSION=62.0.3202.89-1 ;; - 63|63.0) CHROME_VERSION=63.0.3239.84-1 ;; + 63|63.0) CHROME_VERSION=63.0.3239.108-1 ;; *) echo "Unknown chrome version $1"; exit 1; esac printf -- "--build-arg CHROME_VERSION=%s " "$CHROME_VERSION"