mirror of
https://github.com/docker/build-push-action.git
synced 2025-04-19 01:46:45 +00:00
Move setup-buildx and setup-qemu actions
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
parent
2a794d5efe
commit
d8e8fa4354
34 changed files with 1 additions and 14356 deletions
160
.github/workflows/setup-buildx-ci.yml
vendored
160
.github/workflows/setup-buildx-ci.yml
vendored
|
@ -1,160 +0,0 @@
|
|||
name: setup-buildx-ci
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
- v2-working-branch # remove when merged to master
|
||||
paths:
|
||||
- .github/workflows/setup-buildx-ci.yml
|
||||
- setup-buildx/**
|
||||
pull_request:
|
||||
branches:
|
||||
- master
|
||||
- v2-working-branch # remove when merged to master
|
||||
paths:
|
||||
- .github/workflows/setup-buildx-ci.yml
|
||||
- setup-buildx/**
|
||||
|
||||
jobs:
|
||||
main:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
buildx-version:
|
||||
- latest
|
||||
- v0.2.2
|
||||
- ""
|
||||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@v2.3.1
|
||||
-
|
||||
name: Set up Docker Buildx
|
||||
id: buildx
|
||||
uses: ./setup-buildx/
|
||||
with:
|
||||
version: ${{ matrix.buildx-version }}
|
||||
-
|
||||
name: Builder instance name
|
||||
run: echo ${{ steps.buildx.outputs.name }}
|
||||
-
|
||||
name: Available platforms
|
||||
run: echo ${{ steps.buildx.outputs.platforms }}
|
||||
-
|
||||
name: Dump context
|
||||
uses: crazy-max/ghaction-dump-context@v1
|
||||
|
||||
multi:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@v2.3.1
|
||||
-
|
||||
name: Set up Docker Buildx 1
|
||||
id: buildx1
|
||||
uses: ./setup-buildx/
|
||||
-
|
||||
name: Builder 1 instance name
|
||||
run: echo ${{ steps.buildx1.outputs.name }}
|
||||
-
|
||||
name: Set up Docker Buildx 2
|
||||
id: buildx2
|
||||
uses: ./setup-buildx/
|
||||
-
|
||||
name: Builder 2 instance name
|
||||
run: echo ${{ steps.buildx2.outputs.name }}
|
||||
|
||||
install:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@v2.3.1
|
||||
-
|
||||
name: Set up Docker Buildx
|
||||
uses: ./setup-buildx/
|
||||
with:
|
||||
install: true
|
||||
-
|
||||
name: Check cmd
|
||||
run: |
|
||||
docker build --help
|
||||
|
||||
use:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
use:
|
||||
- true
|
||||
- false
|
||||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@v2.3.1
|
||||
-
|
||||
name: Set up Docker Buildx
|
||||
id: buildx
|
||||
uses: ./setup-buildx/
|
||||
with:
|
||||
use: ${{ matrix.use }}
|
||||
-
|
||||
name: List builder instances
|
||||
run: docker buildx ls
|
||||
|
||||
driver:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
driver-opt:
|
||||
- image=moby/buildkit:latest
|
||||
- image=moby/buildkit:master
|
||||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@v2.3.1
|
||||
-
|
||||
name: Set up Docker Buildx
|
||||
id: buildx
|
||||
uses: ./setup-buildx/
|
||||
with:
|
||||
driver: docker-container
|
||||
driver-opt: ${{ matrix.driver-opt }}
|
||||
|
||||
with-qemu:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
buildx-version:
|
||||
- latest
|
||||
- v0.2.2
|
||||
- ""
|
||||
qemu-platforms:
|
||||
- all
|
||||
- arm64,riscv64,arm
|
||||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@v2.3.1
|
||||
-
|
||||
name: Set up QEMU
|
||||
uses: ./setup-qemu/
|
||||
with:
|
||||
platforms: ${{ matrix.qemu-platforms }}
|
||||
-
|
||||
name: Set up Docker Buildx
|
||||
id: buildx
|
||||
uses: ./setup-buildx/
|
||||
with:
|
||||
version: ${{ matrix.buildx-version }}
|
||||
-
|
||||
name: Available platforms
|
||||
run: echo ${{ steps.buildx.outputs.platforms }}
|
||||
-
|
||||
name: Builder instance name
|
||||
run: echo ${{ steps.buildx.outputs.name }}
|
38
.github/workflows/setup-buildx-test.yml
vendored
38
.github/workflows/setup-buildx-test.yml
vendored
|
@ -1,38 +0,0 @@
|
|||
name: setup-buildx-test
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
- v2-working-branch # remove when merged to master
|
||||
paths:
|
||||
- .github/workflows/setup-buildx-test.yml
|
||||
- setup-buildx/**
|
||||
pull_request:
|
||||
branches:
|
||||
- master
|
||||
- v2-working-branch # remove when merged to master
|
||||
paths:
|
||||
- .github/workflows/setup-buildx-test.yml
|
||||
- setup-buildx/**
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@v2.3.1
|
||||
-
|
||||
name: Install
|
||||
run: yarn --cwd ./setup-buildx/ install
|
||||
-
|
||||
name: Test
|
||||
run: yarn --cwd ./setup-buildx/ run test
|
||||
# -
|
||||
# name: Upload coverage
|
||||
# uses: codecov/codecov-action@v1.0.7
|
||||
# if: success()
|
||||
# with:
|
||||
# token: ${{ secrets.CODECOV_TOKEN }}
|
||||
# file: ./coverage/clover.xml
|
47
.github/workflows/setup-qemu-ci.yml
vendored
47
.github/workflows/setup-qemu-ci.yml
vendored
|
@ -1,47 +0,0 @@
|
|||
name: setup-qemu-ci
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
- v2-working-branch # remove when merged to master
|
||||
paths:
|
||||
- .github/workflows/setup-qemu-ci.yml
|
||||
- setup-qemu/**
|
||||
pull_request:
|
||||
branches:
|
||||
- master
|
||||
- v2-working-branch # remove when merged to master
|
||||
paths:
|
||||
- .github/workflows/setup-qemu-ci.yml
|
||||
- setup-qemu/**
|
||||
|
||||
jobs:
|
||||
main:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
image:
|
||||
- tonistiigi/binfmt:latest
|
||||
- tonistiigi/binfmt:master
|
||||
platforms:
|
||||
- all
|
||||
- arm64,riscv64,arm
|
||||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@v2.3.1
|
||||
-
|
||||
name: Set up QEMU
|
||||
id: qemu
|
||||
uses: ./setup-qemu/
|
||||
with:
|
||||
image: ${{ matrix.image }}
|
||||
platforms: ${{ matrix.platforms }}
|
||||
-
|
||||
name: Available platforms
|
||||
run: echo ${{ steps.qemu.outputs.platforms }}
|
||||
-
|
||||
name: Dump context
|
||||
uses: crazy-max/ghaction-dump-context@v1
|
Loading…
Add table
Add a link
Reference in a new issue