From 92af405d8ef48c3ce4b1657c6e81f48335427591 Mon Sep 17 00:00:00 2001 From: Benjamin Forehand Jr Date: Thu, 9 Jan 2025 13:02:30 -0600 Subject: [PATCH] fix(ci): Fix test containers not depolying. --- .circleci/config.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index b2c68a35..bd4355ee 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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: @@ -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: