Skip to content

Commit

Permalink
fix(ci): Fix test containers not depolying. (#820)
Browse files Browse the repository at this point in the history
The CI deployments were broken on master, this should clear everything
up.
  • Loading branch information
b4handjr authored Jan 9, 2025
2 parents bde05a1 + 92af405 commit 20c65f8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -330,12 +330,12 @@ jobs:
docker_layer_caching: true
- run:
name: Build Image
command: docker build -t << parameters.image >>:build -f ./tests/<< parameters.path >>/Dockerfile .
command: docker build -t << parameters.image >> -f ./tests/<< parameters.path >>/Dockerfile .
- run:
name: Save Docker Image to Workspace
command: |
mkdir -p /tmp/cache
docker save -o /tmp/cache/<< parameters.image >>.tar << parameters.image >>:build
docker save -o /tmp/cache/<< parameters.image >>.tar << parameters.image >>
- persist_to_workspace:
root: /tmp/cache
paths:
Expand All @@ -360,12 +360,12 @@ jobs:
docker buildx build --target planner -f ./tests/<< parameters.path >>/Dockerfile .
docker buildx build --target cacher -f ./tests/<< parameters.path >>/Dockerfile .
docker buildx build --target builder -f ./tests/<< parameters.path >>/Dockerfile .
docker buildx build --target integration-tests -t << parameters.image >>:build -f ./tests/<< parameters.path >>/Dockerfile .
docker buildx build --target integration-tests -t << parameters.image >> -f ./tests/<< parameters.path >>/Dockerfile .
- run:
name: Save Docker Image to Workspace
command: |
mkdir -p /tmp/cache
docker save -o /tmp/cache/<< parameters.image >>.tar << parameters.image >>:build
docker save -o /tmp/cache/<< parameters.image >>.tar << parameters.image >>
- persist_to_workspace:
root: /tmp/cache
paths:
Expand Down

0 comments on commit 20c65f8

Please sign in to comment.