2021-08-27 23:08:54 +00:00
|
|
|
name: Test Building Container Images
|
2021-08-28 01:53:24 +00:00
|
|
|
|
2021-08-27 23:08:54 +00:00
|
|
|
on:
|
|
|
|
push:
|
2021-08-27 23:11:37 +00:00
|
|
|
pull_request:
|
2021-08-27 23:08:54 +00:00
|
|
|
workflow_dispatch: []
|
|
|
|
|
2021-08-28 01:57:13 +00:00
|
|
|
concurrency:
|
2021-08-28 02:01:09 +00:00
|
|
|
group: ${{ github.head_ref }}/container_test
|
2021-08-28 01:57:13 +00:00
|
|
|
cancel-in-progress: true
|
|
|
|
|
2021-08-27 23:08:54 +00:00
|
|
|
jobs:
|
|
|
|
build-test:
|
|
|
|
runs-on: [ubuntu-latest]
|
2021-08-28 02:36:32 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
platform: [ linux ]
|
|
|
|
arch: [ amd64, arm, arm64, 386 ]
|
|
|
|
|
2021-08-27 23:08:54 +00:00
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
-
|
|
|
|
name: Docker meta
|
|
|
|
id: docker_meta
|
2021-08-27 23:29:32 +00:00
|
|
|
uses: docker/metadata-action@v3
|
2021-08-27 23:08:54 +00: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
|
|
|
|
push: ${{ github.event_name != 'pull_request' }}
|
|
|
|
file: ./docker/Dockerfile
|
2021-08-28 02:36:32 +00:00
|
|
|
platforms: ${{ matrix.platform }}/${{ matrix.arch }}
|
2021-08-27 23:08:54 +00:00
|
|
|
tags: ${{ steps.docker_meta.outputs.tags }}
|
|
|
|
labels: ${{ steps.docker_meta.outputs.labels }}
|