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

buildkite: Upgrade docker and docker-compose plugins #1412

Open
wants to merge 1 commit into
base: I30aa89d62b53d5146877b570a3db99ce288991ac
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions .buildkite/pipeline.jepsen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ common_values:

env:
ECR_PLUGIN_VERSION: "v2.9.0"
DOCKER_PLUGIN_VERSION: "v5.12.0"
DOCKER_COMPOSE_PLUGIN_VERSION: "v5.5.0"

steps:
- label: ':clojure: Run jepsen test with --help'
Expand All @@ -19,7 +21,7 @@ steps:
- cd jepsen
- lein run test --help
plugins:
docker#v3.8.0:
docker#${DOCKER_PLUGIN_VERSION}:
image: 305232526136.dkr.ecr.us-east-2.amazonaws.com/ecr-public/docker/library/clojure:temurin-20-lein-2.10.0-jammy
ecr#${ECR_PLUGIN_VERSION}:
login: true
Expand All @@ -33,7 +35,7 @@ steps:
- cd jepsen
- lein test
plugins:
docker#v3.8.0:
docker#${DOCKER_PLUGIN_VERSION}:
image: 305232526136.dkr.ecr.us-east-2.amazonaws.com/ecr-public/docker/library/clojure:temurin-20-lein-2.10.0-jammy
ecr#${ECR_PLUGIN_VERSION}:
login: true
Expand All @@ -47,7 +49,7 @@ steps:
- cd jepsen
- lein clj-kondo
plugins:
docker#v3.8.0:
docker#${DOCKER_PLUGIN_VERSION}:
image: 305232526136.dkr.ecr.us-east-2.amazonaws.com/ecr-public/docker/library/clojure:temurin-20-lein-2.10.0-jammy
ecr#${ECR_PLUGIN_VERSION}:
login: true
Expand Down
15 changes: 9 additions & 6 deletions .buildkite/pipeline.public-common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ common_values:

env:
ECR_PLUGIN_VERSION: "v2.9.0"
DOCKER_PLUGIN_VERSION: "v5.12.0"
DOCKER_COMPOSE_PLUGIN_VERSION: "v5.5.0"

steps:

Expand All @@ -23,7 +25,7 @@ steps:
depends_on:
- build-image
plugins:
- docker#v3.8.0:
- docker#${DOCKER_PLUGIN_VERSION}:
image: '305232526136.dkr.ecr.us-east-2.amazonaws.com/readyset-build:${BUILDKITE_COMMIT}'
volumes:
- 'target:/workdir/target'
Expand All @@ -45,7 +47,7 @@ steps:
depends_on:
- cargo-deny-image
plugins:
- docker#v3.8.0:
- docker#${DOCKER_PLUGIN_VERSION}:
image: '305232526136.dkr.ecr.us-east-2.amazonaws.com/cargo-deny:${BUILDKITE_COMMIT}'
environment:
- SCCACHE_BUCKET=readysettech-build-sccache-us-east-2
Expand All @@ -66,7 +68,7 @@ steps:
depends_on:
- build-image
plugins:
- docker#v3.8.0:
- docker#${DOCKER_PLUGIN_VERSION}:
image: '305232526136.dkr.ecr.us-east-2.amazonaws.com/readyset-build:${BUILDKITE_COMMIT}'
volumes:
- 'target:/workdir/target'
Expand All @@ -90,8 +92,9 @@ steps:
depends_on:
- build-image
plugins:
- docker-compose#v3.7.0:
- docker-compose#${DOCKER_COMPOSE_PLUGIN_VERSION}:
run: app
tty: true
env:
- BUILDKITE_PARALLEL_JOB
- SCCACHE_BUCKET=readysettech-build-sccache-us-east-2
Expand Down Expand Up @@ -128,7 +131,7 @@ steps:
depends_on:
- build-image
plugins:
- docker-compose#v3.7.0:
- docker-compose#${DOCKER_COMPOSE_PLUGIN_VERSION}:
run: app
env:
- SCCACHE_BUCKET=readysettech-build-sccache-us-east-2
Expand Down Expand Up @@ -156,7 +159,7 @@ steps:
depends_on:
- build-image
plugins:
- docker-compose#v3.7.0:
- docker-compose#${DOCKER_COMPOSE_PLUGIN_VERSION}:
image: '305232526136.dkr.ecr.us-east-2.amazonaws.com/readyset-build:${BUILDKITE_COMMIT}'
run: app
environment:
Expand Down