We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd8216e commit 8bee950Copy full SHA for 8bee950
.gitlab_ci/build.yml
@@ -7,11 +7,15 @@ build-test:
7
variables:
8
DOCKER_BUILDKIT: 1
9
before_script:
10
- - apk add --no-cache qemu bash
+ - apk add --no-cache qemu bash git
11
script:
12
- docker buildx create --use
13
- docker buildx inspect --bootstrap
14
- - docker buildx build --load --target=dev --tag=$TEST_TAG --cache-to=type=local,dest=/tmp/.buildx-cache --cache-from=type=local,src=/tmp/.buildx-cache .
+ - |
15
+ docker buildx build --load --target=dev --tag=$TEST_TAG \
16
+ --cache-to=type=local,dest=/tmp/.buildx-cache \
17
+ --cache-from=type=local,src=/tmp/.buildx-cache \
18
+ .
19
artifacts:
20
paths:
21
- /tmp/.buildx-cache
0 commit comments