mirror of
https://gitlab.com/crafty-controller/crafty-4.git
synced 2024-08-30 18:23:09 +00:00
Fix builder instance not closing after build
This commit is contained in:
parent
0e040059a2
commit
35bd368e1e
@ -45,7 +45,7 @@ docker-build-dev:
|
|||||||
- |
|
- |
|
||||||
tag=":$CI_COMMIT_REF_SLUG"
|
tag=":$CI_COMMIT_REF_SLUG"
|
||||||
echo "Running on branch '$CI_COMMIT_BRANCH': tag = $tag"
|
echo "Running on branch '$CI_COMMIT_BRANCH': tag = $tag"
|
||||||
- docker buildx create --use
|
- docker buildx create --use --name zedBuilder
|
||||||
- docker buildx build
|
- docker buildx build
|
||||||
--cache-from type=registry,ref="$CI_REGISTRY_IMAGE${tag}"
|
--cache-from type=registry,ref="$CI_REGISTRY_IMAGE${tag}"
|
||||||
--build-arg BUILDKIT_INLINE_CACHE=1
|
--build-arg BUILDKIT_INLINE_CACHE=1
|
||||||
@ -53,6 +53,9 @@ docker-build-dev:
|
|||||||
--platform linux/arm64/v8,linux/amd64
|
--platform linux/arm64/v8,linux/amd64
|
||||||
--push .
|
--push .
|
||||||
after_script:
|
after_script:
|
||||||
|
- |
|
||||||
|
docker buildx rm zedBuilder && echo "Successfully Stopped builder instance" || echo "Failed to stop builder instance."
|
||||||
|
echo "Please review multi-arch manifests are present:"
|
||||||
- docker buildx imagetools inspect "$CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG"
|
- docker buildx imagetools inspect "$CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG"
|
||||||
|
|
||||||
docker-build-prod:
|
docker-build-prod:
|
||||||
@ -76,7 +79,7 @@ docker-build-prod:
|
|||||||
- |
|
- |
|
||||||
tag=""
|
tag=""
|
||||||
echo "Running on default branch '$CI_DEFAULT_BRANCH': tag = 'latest'"
|
echo "Running on default branch '$CI_DEFAULT_BRANCH': tag = 'latest'"
|
||||||
- docker buildx create --use
|
- docker buildx create --use --name zedBuilder
|
||||||
- docker buildx build
|
- docker buildx build
|
||||||
--cache-from type=registry,ref="$CI_REGISTRY_IMAGE${tag}"
|
--cache-from type=registry,ref="$CI_REGISTRY_IMAGE${tag}"
|
||||||
--build-arg BUILDKIT_INLINE_CACHE=1
|
--build-arg BUILDKIT_INLINE_CACHE=1
|
||||||
@ -84,4 +87,7 @@ docker-build-prod:
|
|||||||
--platform linux/arm64/v8,linux/amd64
|
--platform linux/arm64/v8,linux/amd64
|
||||||
--push .
|
--push .
|
||||||
after_script:
|
after_script:
|
||||||
|
- |
|
||||||
|
docker buildx rm zedBuilder && echo "Successfully Stopped builder instance" || echo "Failed to stop builder instance."
|
||||||
|
echo "Please review multi-arch manifests are present:"
|
||||||
- docker buildx imagetools inspect "$CI_REGISTRY_IMAGE${tag}"
|
- docker buildx imagetools inspect "$CI_REGISTRY_IMAGE${tag}"
|
||||||
|
Loading…
Reference in New Issue
Block a user