Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: the old go download #958

Merged
merged 4 commits into from Jul 24, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
26 changes: 10 additions & 16 deletions .circleci/config.yml
Expand Up @@ -19,9 +19,9 @@ param_cli_cluster_backend: &param_cli_cluster_backend
# Install go version 1.19 to run our integration tests on the minimal version we support
steps_install_go: &steps_install_go
- run: |
wget https://go.dev/dl/go1.19.9.linux-amd64.tar.gz
wget https://go.dev/dl/go<< pipeline.parameters.go-version >>.linux-amd64.tar.gz
sudo rm -rf /usr/local/go
sudo tar -C /usr/local -xzf go1.19.9.linux-amd64.tar.gz
sudo tar -C /usr/local -xzf go<< pipeline.parameters.go-version >>.linux-amd64.tar.gz

# Steps to prepare a job for Kubernetes testing (with K3S K8S distribution)
steps_prepare_testing_k8s_k3s: &steps_prepare_testing_k8s_k3s
Expand Down Expand Up @@ -137,9 +137,6 @@ parameters:
default: "1.19.10"
# Separate (and newer) than the API version because we want lots of people to be able to use the Kurtosis API and the API doesn't need to be
# the same version as the server
server-go-version:
type: string
default: "1.19.10"
rust-version:
type: string
default: 1.68.2
Expand All @@ -152,9 +149,6 @@ parameters:
engine-server-build-cache-key-prefix:
type: string
default: "engine-server-go-mod-v1" # Can bump this version to bust the cache
cli-go-version:
type: string
default: "1.19.10"
workspace-with-cli-binary-and-images-mountpoint:
type: string
default: "/tmp/workspace"
Expand Down Expand Up @@ -278,7 +272,7 @@ jobs:

build_files_artifacts_expander:
docker:
- image: "cimg/go:<< pipeline.parameters.server-go-version >>"
- image: "cimg/go:<< pipeline.parameters.go-version >>"
steps:
- checkout

Expand Down Expand Up @@ -306,7 +300,7 @@ jobs:

build_core_launcher:
docker:
- image: "cimg/go:<< pipeline.parameters.server-go-version >>"
- image: "cimg/go:<< pipeline.parameters.go-version >>"
steps:
- checkout

Expand All @@ -320,7 +314,7 @@ jobs:

build_api_container_server:
docker:
- image: "cimg/go:<< pipeline.parameters.server-go-version >>"
- image: "cimg/go:<< pipeline.parameters.go-version >>"
steps:
- checkout

Expand Down Expand Up @@ -363,7 +357,7 @@ jobs:

build_engine_launcher:
docker:
- image: "cimg/go:<< pipeline.parameters.server-go-version >>"
- image: "cimg/go:<< pipeline.parameters.go-version >>"
steps:
- checkout

Expand All @@ -377,7 +371,7 @@ jobs:

build_engine_server:
docker:
- image: "cimg/go:<< pipeline.parameters.server-go-version >>"
- image: "cimg/go:<< pipeline.parameters.go-version >>"
steps:
- checkout

Expand Down Expand Up @@ -889,7 +883,7 @@ jobs:

publish_files_artifacts_expander_image:
docker:
- image: "cimg/go:<< pipeline.parameters.server-go-version >>"
- image: "cimg/go:<< pipeline.parameters.go-version >>"
steps:
- slack/notify:
channel: engineering
Expand Down Expand Up @@ -921,7 +915,7 @@ jobs:

publish_api_container_server_image:
docker:
- image: "cimg/go:<< pipeline.parameters.server-go-version >>"
- image: "cimg/go:<< pipeline.parameters.go-version >>"
steps:
- slack/notify:
channel: engineering
Expand Down Expand Up @@ -959,7 +953,7 @@ jobs:

publish_engine_server_image:
docker:
- image: "cimg/go:<< pipeline.parameters.server-go-version >>"
- image: "cimg/go:<< pipeline.parameters.go-version >>"
steps:
- slack/notify:
channel: engineering
Expand Down