Skip to content

Commit

Permalink
fix: make push cli job use golang 1.20 (#1925)
Browse files Browse the repository at this point in the history
## Description:
Updates `push_cli_artifacts` job to use an image based on golang 1.20.

## Is this change user facing?
NO
  • Loading branch information
tedim52 committed Dec 11, 2023
1 parent 7086662 commit 805469e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .circleci/config.yml
Expand Up @@ -467,6 +467,8 @@ jobs:
- "<< pipeline.parameters.engine-server-image-filename >>"

build_cli:
# we use this docker/tilt-releaser image for cli jobs because starlark-lsp requires it to build
# as opposed to running image off cimg/go:<< pipeline.parameters.go-version like every other job
docker:
- image: "docker/tilt-releaser@sha256:ff4a71c0d18717cc9c646778cc426a0a4f916885c5fe7eb001f0eaee0d3483a0"
resource_class: large
Expand Down Expand Up @@ -1177,8 +1179,10 @@ jobs:
scripts/docker-image-builder.sh "${push_to_dockerhub}" "${dockerfile_filepath}" "${image_name_with_version}" "${image_name_to_publish_semver}" "${image_name_to_publish_latest}"
push_cli_artifacts:
# we use this docker/tilt-releaser image for cli jobs because starlark-lsp requires it to build
# as opposed to running image off cimg/go:<< pipeline.parameters.go-version like every other job
docker:
- image: "docker/tilt-releaser@sha256:31e51c6441faa5021a20ebe84cf974145d2975f792dd880a5d1c2fa578818458"
- image: "docker/tilt-releaser@sha256:ff4a71c0d18717cc9c646778cc426a0a4f916885c5fe7eb001f0eaee0d3483a0"
steps:
- slack/notify:
channel: engineering
Expand Down

0 comments on commit 805469e

Please sign in to comment.