[PLAY-648] Multi platform images #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
tags: | |
- "v*.*.*" | |
branches: | |
- "dev*" | |
- "main" | |
schedule: | |
- cron: "0 0 * * 1" | |
env: | |
REGISTRY_IMAGE: shipasoftware/ketch | |
jobs: | |
build-single-platform: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v4 | |
- name: Login to DockerHub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Build and push | |
id: docker_build | |
uses: docker/build-push-action@v5 | |
with: | |
push: ${{ github.event_name != 'schedule' }} | |
tags: ${{ env.REGISTRY_IMAGE }}:${{ github.sha }} | |
build-args: | | |
github_user=${{ secrets.SHIPA_GITHUB_USERNAME }} | |
github_token=${{ secrets.SHIPA_GITHUB_TOKEN }} | |
release_version=${{ github.head_ref }} | |
git_commit=${{ github.sha }} | |
secrets: | | |
GIT_AUTH_TOKEN=${{ secrets.SHIPA_GITHUB_TOKEN }} | |
build-multiplatform: | |
if: ${{ (github.ref == 'refs/heads/main') && (github.event_name != 'schedule') }} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: | |
- linux/amd64 | |
- linux/arm64 | |
# - linux/riscv64 | |
- linux/ppc64le | |
- linux/s390x | |
# - linux/386 - no distroless support | |
# - linux/mips64le - no distroless support | |
# - linux/mips64 - no distroless support | |
- linux/arm/v7 | |
# - linux/arm/v6 - no distroless support | |
timeout-minutes: 30 | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.SHIPA_GITHUB_TOKEN }} | |
ssh-key: ${{ secrets.SSH_KEY }} | |
submodules: recursive | |
- name: Docker meta | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: ${{ env.REGISTRY_IMAGE }} | |
tags: type=raw,value=${{ github.sha }} | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v1 | |
with: | |
platforms: linux/amd64,linux/arm64,linux/ppc64le,linux/s390x,linux/arm/v7 | |
- name: Login to DockerHub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Build and push | |
id: build | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
platforms: ${{ matrix.platform }} | |
labels: ${{ steps.meta.outputs.labels }} | |
outputs: type=image,name=${{ env.REGISTRY_IMAGE }},push-by-digest=true,name-canonical=true,push=true | |
build-args: | | |
github_user=${{ secrets.SHIPA_GITHUB_USERNAME }} | |
github_token=${{ secrets.SHIPA_GITHUB_TOKEN }} | |
release_version=${{ github.head_ref }} | |
git_commit=${{ github.sha }} | |
secrets: | | |
GIT_AUTH_TOKEN=${{ secrets.SHIPA_GITHUB_TOKEN }} | |
- name: Export digest | |
run: | | |
mkdir -p /tmp/digests | |
digest="${{ steps.build.outputs.digest }}" | |
touch "/tmp/digests/${digest#sha256:}" | |
- name: Upload digest | |
uses: actions/upload-artifact@v3 | |
with: | |
name: digests | |
path: /tmp/digests/* | |
if-no-files-found: error | |
retention-days: 1 | |
merge: | |
runs-on: ubuntu-latest | |
needs: | |
- build-multiplatform | |
steps: | |
- name: Download digests | |
uses: actions/download-artifact@v3 | |
with: | |
name: digests | |
path: /tmp/digests | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Docker meta | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: ${{ env.REGISTRY_IMAGE }} | |
tags: type=raw,value=${{ github.sha }} | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Create manifest list and push | |
working-directory: /tmp/digests | |
run: | | |
docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \ | |
$(printf '${{ env.REGISTRY_IMAGE }}@sha256:%s ' *) | |
- name: Inspect image | |
run: | | |
docker buildx imagetools inspect ${{ env.REGISTRY_IMAGE }}:${{ steps.meta.outputs.version }} | |
security-scan: | |
runs-on: ubuntu-latest | |
needs: | |
- build-single-platform | |
steps: | |
- name: Run Trivy vulnerability scanner | |
uses: aquasecurity/trivy-action@f78e9ecf42a1271402d4f484518b9313235990e1 | |
with: | |
image-ref: ${{ env.REGISTRY_IMAGE }}:${{ github.sha }} | |
format: "sarif" | |
output: "trivy-results.sarif" | |
exit-code: "1" | |
- name: Upload Trivy scan results to GitHub Security tab | |
uses: github/codeql-action/upload-sarif@v2 | |
with: | |
sarif_file: "trivy-results.sarif" |