d5ad186d49
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
(cherry picked from commit 668af4be82
)
110 lines
2.6 KiB
YAML
110 lines
2.6 KiB
YAML
name: bin-image
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- 'master'
|
|
- '[0-9]+.[0-9]+'
|
|
tags:
|
|
- 'v*'
|
|
pull_request:
|
|
|
|
env:
|
|
PLATFORM: Moby Engine
|
|
PRODUCT: Moby
|
|
DEFAULT_PRODUCT_LICENSE: Moby
|
|
PACKAGER_NAME: Moby
|
|
|
|
jobs:
|
|
validate-dco:
|
|
uses: ./.github/workflows/.dco.yml
|
|
|
|
prepare:
|
|
runs-on: ubuntu-20.04
|
|
outputs:
|
|
platforms: ${{ steps.platforms.outputs.matrix }}
|
|
steps:
|
|
-
|
|
name: Checkout
|
|
uses: actions/checkout@v3
|
|
-
|
|
name: Create platforms matrix
|
|
id: platforms
|
|
run: |
|
|
echo "matrix=$(docker buildx bake bin-image-cross --print | jq -cr '.target."bin-image-cross".platforms')" >>${GITHUB_OUTPUT}
|
|
-
|
|
name: Docker meta
|
|
id: meta
|
|
uses: docker/metadata-action@v4
|
|
with:
|
|
images: moby-bin
|
|
### versioning strategy
|
|
## push semver tag v23.0.0
|
|
# moby/moby-bin:23.0.0
|
|
# moby/moby-bin:latest
|
|
## push semver prelease tag v23.0.0-beta.1
|
|
# moby/moby-bin:23.0.0-beta.1
|
|
## push on master
|
|
# moby/moby-bin:master
|
|
## push on 23.0 branch
|
|
# moby/moby-bin:23.0
|
|
tags: |
|
|
type=semver,pattern={{version}}
|
|
type=ref,event=branch
|
|
type=ref,event=pr
|
|
-
|
|
name: Rename meta bake definition file
|
|
run: |
|
|
mv "${{ steps.meta.outputs.bake-file }}" "/tmp/bake-meta.json"
|
|
-
|
|
name: Upload meta bake definition
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: bake-meta
|
|
path: /tmp/bake-meta.json
|
|
if-no-files-found: error
|
|
retention-days: 1
|
|
|
|
build:
|
|
runs-on: ubuntu-20.04
|
|
needs:
|
|
- validate-dco
|
|
- prepare
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
platform: ${{ fromJson(needs.prepare.outputs.platforms) }}
|
|
steps:
|
|
-
|
|
name: Checkout
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
-
|
|
name: Download meta bake definition
|
|
uses: actions/download-artifact@v3
|
|
with:
|
|
name: bake-meta
|
|
path: /tmp
|
|
-
|
|
name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v2
|
|
-
|
|
name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v2
|
|
-
|
|
name: Build
|
|
uses: docker/bake-action@v2
|
|
with:
|
|
files: |
|
|
./docker-bake.hcl
|
|
/tmp/bake-meta.json
|
|
targets: bin-image
|
|
set: |
|
|
*.platform=${{ matrix.platform }}
|
|
*.output=type=cacheonly
|