-
Notifications
You must be signed in to change notification settings - Fork 130
158 lines (149 loc) · 5.71 KB
/
docker-publish.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
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