2021-08-28 07:08:54 +08:00
|
|
|
name: Test Building Container Images
|
2021-08-28 09:53:24 +08:00
|
|
|
|
2021-08-28 07:08:54 +08:00
|
|
|
on:
|
2021-08-28 07:11:37 +08:00
|
|
|
pull_request:
|
2021-08-28 07:08:54 +08:00
|
|
|
workflow_dispatch: []
|
|
|
|
|
2021-08-28 09:57:13 +08:00
|
|
|
concurrency:
|
2021-08-28 10:01:09 +08:00
|
|
|
group: ${{ github.head_ref }}/container_test
|
2021-08-28 09:57:13 +08:00
|
|
|
cancel-in-progress: true
|
|
|
|
|
2021-08-28 07:08:54 +08:00
|
|
|
jobs:
|
|
|
|
build-test:
|
|
|
|
runs-on: [ubuntu-latest]
|
2021-08-28 10:36:32 +08:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
platform: [ linux ]
|
|
|
|
arch: [ amd64, arm, arm64, 386 ]
|
|
|
|
|
2021-08-28 07:08:54 +08:00
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
-
|
|
|
|
name: Docker meta
|
|
|
|
id: docker_meta
|
2021-08-28 07:29:32 +08:00
|
|
|
uses: docker/metadata-action@v3
|
2021-08-28 07:08:54 +08:00
|
|
|
with:
|
|
|
|
images: |
|
|
|
|
chrislusf/seaweedfs
|
|
|
|
ghcr.io/chrislusf/seaweedfs
|
|
|
|
tags: |
|
|
|
|
type=raw,value=latest
|
|
|
|
labels: |
|
|
|
|
org.opencontainers.image.title=seaweedfs
|
|
|
|
org.opencontainers.image.vendor=Chris Lu
|
|
|
|
-
|
|
|
|
name: Set up QEMU
|
|
|
|
uses: docker/setup-qemu-action@v1
|
|
|
|
-
|
|
|
|
name: Set up Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@v1
|
|
|
|
with:
|
|
|
|
buildkitd-flags: "--debug"
|
|
|
|
-
|
|
|
|
name: Build
|
|
|
|
uses: docker/build-push-action@v2
|
|
|
|
with:
|
|
|
|
context: ./docker
|
2021-08-29 10:57:08 +08:00
|
|
|
push: false
|
2021-08-28 07:08:54 +08:00
|
|
|
file: ./docker/Dockerfile
|
2021-08-28 10:36:32 +08:00
|
|
|
platforms: ${{ matrix.platform }}/${{ matrix.arch }}
|
2021-08-28 07:08:54 +08:00
|
|
|
tags: ${{ steps.docker_meta.outputs.tags }}
|
|
|
|
labels: ${{ steps.docker_meta.outputs.labels }}
|