[ci] (deps): Bump docker/metadata-action from 5.4.0 to 5.5.0 (#405) #588
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 and publish Docker images | |
# This workflow uses actions that GitHub does not certify. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support | |
# documentation. | |
on: | |
push: | |
branches: [ "**" ] | |
# Publish semver tags as releases. | |
tags: [ 'v*.*.*' ] | |
paths-ignore: | |
- "Website/**" | |
- "*.md" | |
pull_request: | |
paths-ignore: | |
- "Website/**" | |
- "*.md" | |
workflow_dispatch: | |
env: | |
REGISTRY: ghcr.io | |
jobs: | |
build: | |
runs-on: "ubuntu-latest" | |
strategy: | |
matrix: | |
filename: [ CLI/Dockerfile, GUI/Dockerfile ] | |
docker_context: [CLI, GUI] | |
image_name: [ drifty-cli, drifty-gui ] | |
exclude: | |
- filename: GUI/Dockerfile | |
docker_context: CLI | |
image_name: drifty-cli | |
- filename: GUI/Dockerfile | |
docker_context: GUI | |
image_name: drifty-cli | |
- filename: GUI/Dockerfile | |
docker_context: CLI | |
image_name: drifty-gui | |
- filename: CLI/Dockerfile | |
docker_context: GUI | |
image_name: drifty-gui | |
- filename: CLI/Dockerfile | |
docker_context: CLI | |
image_name: drifty-gui | |
- filename: CLI/Dockerfile | |
docker_context: GUI | |
image_name: drifty-cli | |
fail-fast: false | |
permissions: | |
contents: read | |
packages: write | |
# This is used to complete the identity challenge | |
# with sigstore/fulcio when running outside PRs. | |
id-token: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Update system packages | |
if: matrix.filename == 'GUI/Dockerfile' | |
run: sudo apt-get update | |
- name: Install build dependencies | |
if: matrix.filename == 'GUI/Dockerfile' | |
run: | | |
sudo apt-get install libasound2-dev libavcodec-dev libavformat-dev libavutil-dev libfreetype6-dev | |
sudo apt-get install libgl-dev libglib2.0-dev libgtk-3-dev libpango1.0-dev libx11-dev libxtst-dev zlib1g-dev | |
- name: Set up GraalVM JDK 21 | |
uses: graalvm/setup-graalvm@v1 | |
with: | |
java-version: '21' | |
distribution: 'graalvm-community' | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
set-java-home: true | |
cache: 'maven' | |
- name: Package Drifty CLI with GraalVM | |
if: matrix.filename == 'CLI/Dockerfile' | |
run: mvn -P build-drifty-cli-for-ubuntu-latest package | |
- name: Set Up Maven version 3.8.8 # For GUI build issues, maven version 3.8.8 needs to be used | |
if: matrix.filename == 'GUI/Dockerfile' | |
uses: stCarolas/setup-maven@v4.5 | |
with: | |
maven-version: 3.8.8 | |
- name: Build platform-specific C object for missing jdk libraries | |
if: matrix.filename == 'GUI/Dockerfile' | |
run: gcc -c config/missing_symbols.c -o config/missing_symbols-ubuntu-latest.o | |
- name: Install dependency modules for GUI | |
if: matrix.filename == 'GUI/Dockerfile' | |
run: mvn -U clean install | |
- name: Package Drifty GUI with GraalVM | |
if: matrix.filename == 'GUI/Dockerfile' | |
run: mvn -P build-drifty-gui-for-ubuntu-latest gluonfx:build gluonfx:package -rf :GUI | |
- name: Categorise build artifacts for CLI | |
if: matrix.filename == 'CLI/Dockerfile' | |
run: | | |
mkdir build | |
mkdir build/CLI | |
mv "CLI/target/CLI/linux/Drifty CLI" "CLI/target/CLI/linux/Drifty_CLI" | |
mv "CLI/target/CLI/linux/Drifty_CLI" -t build/CLI | |
- name: Categorise build artifacts for GUI | |
if: matrix.filename == 'GUI/Dockerfile' | |
run: | | |
mkdir build | |
mkdir build/GUI | |
mv GUI/target/gluonfx/x86_64-linux/GUI "GUI/target/gluonfx/x86_64-linux/Drifty_GUI" | |
mv "GUI/target/gluonfx/x86_64-linux/Drifty_GUI" -t build/GUI | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
# Set up BuildKit Docker container builder to be able to build | |
# multi-platform images and export cache | |
# https://github.com/docker/setup-buildx-action | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3.0.0 | |
# Login against a Docker registry except on PR | |
# https://github.com/docker/login-action | |
- name: Log into registry | |
if: github.event_name != 'pull_request' && github.repository == 'SaptarshiSarkar12/Drifty' | |
uses: docker/login-action@v3.0.0 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
# Extract metadata (tags, labels) for Docker | |
# https://github.com/docker/metadata-action | |
- name: Extract Docker metadata | |
id: meta | |
uses: docker/metadata-action@v5.5.0 | |
with: | |
images: | | |
${{ env.REGISTRY }}/${{ github.repository_owner }}/${{ matrix.image_name }} | |
tags: | | |
type=ref,event=branch | |
type=ref,event=pr | |
type=semver,pattern={{version}} | |
type=sha | |
flavor: | | |
latest=auto | |
# Build and push Docker image with Buildx (don't push on PR) | |
# https://github.com/docker/build-push-action | |
- name: Build and push Docker image | |
id: build-and-push | |
uses: docker/build-push-action@v5.1.0 | |
with: | |
context: build/${{ matrix.docker_context }} | |
push: ${{ github.event_name != 'pull_request' && github.repository == 'SaptarshiSarkar12/Drifty' }} | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
file: Docker/prod/${{ matrix.filename }} | |
platforms: linux/amd64,linux/arm64,linux/arm/v7 |