From e4c4c4de881b36e6d7076a77ab4ae90720f128e1 Mon Sep 17 00:00:00 2001 From: Marcin Zyla Date: Thu, 28 Mar 2024 17:53:28 +0100 Subject: [PATCH] test --- hack/ci-build.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hack/ci-build.sh b/hack/ci-build.sh index 8d4d39b..0c8f913 100755 --- a/hack/ci-build.sh +++ b/hack/ci-build.sh @@ -50,18 +50,18 @@ FINAL_IMAGE_NAME="${IMAGE_BASE_NAME}:${IMAGE_BASE_TAG}_${BUILD_TYPE}" echo >&2 "Building VPP and extracting the artifacts ..." rm -rf /tmp/_out mkdir /tmp/_out -do_build --opt target=artifacts --output type=local,dest=/tmp/_out +do_build --target=artifacts --output type=local,dest=/tmp/_out echo >&2 "Building the dev image from ${DOCKERFILE} ..." push=",push=true" if [[ ${NO_PUSH} ]]; then push="" fi -do_build --opt target=dev-stage \ +do_build --target=dev-stage \ --output type="image,\"name=${DEV_IMAGE_NAME}\"${push}" echo >&2 "Building the final image from ${DOCKERFILE} ..." -do_build --opt target=final-stage \ +do_build --target=final-stage \ --output type="image,\"name=${FINAL_IMAGE_NAME}\"${push}" echo "${DEV_IMAGE_NAME}" > "image-dev-${BUILD_TYPE}.txt"