mirror of
https://github.com/docker/build-push-action.git
synced 2026-07-04 14:05:38 +00:00
e2e: test buildx and buildkit edge
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
parent
44ea916f6c
commit
767df53376
12
.github/workflows/e2e.yml
vendored
12
.github/workflows/e2e.yml
vendored
@ -23,8 +23,6 @@ on:
|
|||||||
- 'v*'
|
- 'v*'
|
||||||
|
|
||||||
env:
|
env:
|
||||||
BUILDX_VERSION: latest
|
|
||||||
BUILDKIT_IMAGE: moby/buildkit:buildx-stable-1
|
|
||||||
HARBOR_VERSION: v2.7.0
|
HARBOR_VERSION: v2.7.0
|
||||||
NEXUS_VERSION: 3.47.1
|
NEXUS_VERSION: 3.47.1
|
||||||
DISTRIBUTION_VERSION: 2.8.1
|
DISTRIBUTION_VERSION: 2.8.1
|
||||||
@ -35,6 +33,12 @@ jobs:
|
|||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
|
buildx_version:
|
||||||
|
- latest
|
||||||
|
- https://github.com/docker/buildx.git#master
|
||||||
|
buildkit_image:
|
||||||
|
- moby/buildkit:buildx-stable-1
|
||||||
|
- moby/buildkit:master
|
||||||
include:
|
include:
|
||||||
-
|
-
|
||||||
name: Distribution
|
name: Distribution
|
||||||
@ -166,11 +170,11 @@ jobs:
|
|||||||
name: Set up Docker Buildx
|
name: Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action@v2
|
uses: docker/setup-buildx-action@v2
|
||||||
with:
|
with:
|
||||||
version: ${{ inputs.buildx-version || env.BUILDX_VERSION }}
|
version: ${{ inputs.buildx-version || matrix.buildx_version }}
|
||||||
config: /tmp/buildkitd.toml
|
config: /tmp/buildkitd.toml
|
||||||
buildkitd-flags: --debug --allow-insecure-entitlement security.insecure --allow-insecure-entitlement network.host
|
buildkitd-flags: --debug --allow-insecure-entitlement security.insecure --allow-insecure-entitlement network.host
|
||||||
driver-opts: |
|
driver-opts: |
|
||||||
image=${{ inputs.buildkit-image || env.BUILDKIT_IMAGE }}
|
image=${{ inputs.buildkit-image || matrix.buildkit_image }}
|
||||||
network=host
|
network=host
|
||||||
-
|
-
|
||||||
name: Login to Registry
|
name: Login to Registry
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user