-
Notifications
You must be signed in to change notification settings - Fork 5
284 lines (244 loc) · 11.4 KB
/
nginx.yml
File metadata and controls
284 lines (244 loc) · 11.4 KB
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
name: build(nginx)
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
push:
branches:
- main
paths:
- 'nginx/**'
workflow_dispatch:
schedule:
- cron: '0 0 3 * *'
jobs:
slim:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
name: ['nginx']
suite: ['alpine-slim']
branch: ['mainline', 'stable']
latest_branch: ['stable']
steps:
- name: Checkout ${{ matrix.name }}
uses: actions/checkout@v6
- name: Setup QEMU
uses: docker/setup-qemu-action@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v4
- name: Login to GitHub Container Registry
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Get Version
run: |
echo "build=true" >> $GITHUB_ENV
if [ ! -f "${{ matrix.name }}/${{ matrix.branch }}/${{ matrix.suite }}/Dockerfile" ]; then
echo "build=false" >> $GITHUB_ENV
exit 0
fi
full_version=$(grep "ENV NGINX_VERSION" ${{ matrix.name }}/${{ matrix.branch }}/debian/Dockerfile | awk '{print $3}')
echo "full_version=${full_version}" >> $GITHUB_ENV
minor_version=$(echo ${full_version} | cut -d'.' -f1-2)
echo "minor_version=${minor_version}" >> $GITHUB_ENV
version=${{ matrix.branch }}
case ${version} in
mainline)
image_tag=${version}-alpine3.23-slim
minor_image_tag=${minor_version}-alpine3.23-slim
full_image_tag=${full_version}-alpine3.23-slim
;;
stable)
image_tag=${version}-alpine3.21-slim
minor_image_tag=${minor_version}-alpine3.21-slim
full_image_tag=${full_version}-alpine3.21-slim
;;
esac
echo "image_tag=${image_tag}" >> $GITHUB_ENV
echo "minor_image_tag=${minor_image_tag}" >> $GITHUB_ENV
echo "full_image_tag=${full_image_tag}" >> $GITHUB_ENV
- name: Build and push image
if: env.build == 'true'
uses: docker/build-push-action@v6
with:
context: ${{ matrix.name }}/${{ matrix.branch }}/${{ matrix.suite }}/
platforms: linux/loong64
push: true
tags: |
ghcr.io/${{ github.repository_owner }}/${{ matrix.name }}:${{ env.image_tag }}
ghcr.io/${{ github.repository_owner }}/${{ matrix.name }}:${{ env.full_image_tag }}
ghcr.io/${{ github.repository_owner }}/${{ matrix.name }}:${{ env.minor_image_tag }}
ghcr.io/${{ github.repository_owner }}/${{ matrix.name }}:${{ matrix.branch }}-${{ matrix.suite }}
ghcr.io/${{ github.repository_owner }}/${{ matrix.name }}:${{ env.full_version }}-${{ matrix.suite }}
ghcr.io/${{ github.repository_owner }}/${{ matrix.name }}:${{ env.minor_version }}-${{ matrix.suite }}
nginx:
runs-on: ubuntu-latest
needs: slim
strategy:
fail-fast: false
matrix:
name: ['nginx']
suite: ['debian', 'alpine']
branch: ['mainline', 'stable']
latest_branch: ['stable']
steps:
- name: Checkout ${{ matrix.name }}
uses: actions/checkout@v6
- name: Setup QEMU
uses: docker/setup-qemu-action@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v4
- name: Login to GitHub Container Registry
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Get Version
run: |
echo "build=true" >> $GITHUB_ENV
if [ ! -f "${{ matrix.name }}/${{ matrix.branch }}/${{ matrix.suite }}/Dockerfile" ]; then
echo "build=false" >> $GITHUB_ENV
exit 0
fi
full_version=$(grep "ENV NGINX_VERSION" ${{ matrix.name }}/${{ matrix.branch }}/debian/Dockerfile | awk '{print $3}')
echo "full_version=${full_version}" >> $GITHUB_ENV
minor_version=$(echo ${full_version} | cut -d'.' -f1-2)
echo "minor_version=${minor_version}" >> $GITHUB_ENV
version=${{ matrix.branch }}
image_tag=${version}
full_image_tag=${full_version}
case ${{ matrix.suite }} in
debian)
image_tag=${version}-trixie
minor_image_tag=${minor_version}-trixie
full_image_tag=${full_version}-trixie
;;
alpine)
if [ "${{ matrix.branch }}" = "stable" ]; then
alpine_version="alpine3.21"
else
alpine_version="alpine3.23"
fi
image_tag=${version}-${alpine_version}
minor_image_tag=${minor_version}-${alpine_version}
full_image_tag=${full_version}-${alpine_version}
;;
esac
echo "image_tag=${image_tag}" >> $GITHUB_ENV
echo "minor_image_tag=${minor_image_tag}" >> $GITHUB_ENV
echo "full_image_tag=${full_image_tag}" >> $GITHUB_ENV
- name: Build and push image
if: env.build == 'true'
uses: docker/build-push-action@v6
with:
context: ${{ matrix.name }}/${{ matrix.branch }}/${{ matrix.suite }}/
platforms: linux/loong64
push: true
tags: |
ghcr.io/${{ github.repository_owner }}/${{ matrix.name }}:${{ env.image_tag }}
ghcr.io/${{ github.repository_owner }}/${{ matrix.name }}:${{ env.minor_image_tag }}
ghcr.io/${{ github.repository_owner }}/${{ matrix.name }}:${{ env.full_image_tag }}
ghcr.io/${{ github.repository_owner }}/${{ matrix.name }}:${{ matrix.branch }}-${{ matrix.suite }}
ghcr.io/${{ github.repository_owner }}/${{ matrix.name }}:${{ env.full_version }}-${{ matrix.suite }}
ghcr.io/${{ github.repository_owner }}/${{ matrix.name }}:${{ env.minor_version }}-${{ matrix.suite }}
- name: Prepare configuration
run: |
wget -qO- https://github.com/google/go-containerregistry/releases/latest/download/go-containerregistry_Linux_x86_64.tar.gz | sudo tar -xzf - -C /usr/local/bin/ crane
sudo chmod +x /usr/local/bin/crane
sudo chown root:root /usr/local/bin/crane
- name: Pull and Push Images
run: |
if [ "${{ matrix.branch }}" = "${{ matrix.latest_branch }}" ] || [ "${{ matrix.suite }}" = "debian" ]; then
crane cp ghcr.io/${{ github.repository_owner }}/${{ matrix.name }}:${{ env.full_version }}-${{ matrix.suite }} ghcr.io/${{ github.repository_owner }}/${{ matrix.name }}:stable
crane cp ghcr.io/${{ github.repository_owner }}/${{ matrix.name }}:${{ env.full_version }}-${{ matrix.suite }} ghcr.io/${{ github.repository_owner }}/${{ matrix.name }}:latest
crane cp ghcr.io/${{ github.repository_owner }}/${{ matrix.name }}:${{ env.full_version }}-${{ matrix.suite }} ghcr.io/${{ github.repository_owner }}/${{ matrix.name }}:${{ env.full_version }}
crane cp ghcr.io/${{ github.repository_owner }}/${{ matrix.name }}:${{ env.full_version }}-${{ matrix.suite }} ghcr.io/${{ github.repository_owner }}/${{ matrix.name }}:${{ env.minor_version }}
fi
perl:
runs-on: ubuntu-latest
needs: nginx
strategy:
fail-fast: false
matrix:
name: ['nginx']
suite: ['debian-perl', 'alpine-perl']
branch: ['mainline', 'stable']
latest_branch: ['stable']
steps:
- name: Checkout ${{ matrix.name }}
uses: actions/checkout@v6
- name: Setup QEMU
uses: docker/setup-qemu-action@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v4
- name: Login to GitHub Container Registry
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Get Version
run: |
echo "build=true" >> $GITHUB_ENV
if [ ! -f "${{ matrix.name }}/${{ matrix.branch }}/${{ matrix.suite }}/Dockerfile" ]; then
echo "build=false" >> $GITHUB_ENV
exit 0
fi
full_version=$(grep "ENV NGINX_VERSION" ${{ matrix.name }}/${{ matrix.branch }}/debian/Dockerfile | awk '{print $3}')
echo "full_version=${full_version}" >> $GITHUB_ENV
minor_version=$(echo ${full_version} | cut -d'.' -f1-2)
echo "minor_version=${minor_version}" >> $GITHUB_ENV
version=${{ matrix.branch }}
image_tag=${version}
full_image_tag=${full_version}
case ${{ matrix.suite }} in
debian*)
image_tag=${version}-trixie
minor_image_tag=${minor_version}-trixie
full_image_tag=${full_version}-trixie
;;
alpine*)
if [ "${{ matrix.branch }}" = "stable" ]; then
alpine_version="alpine3.21"
else
alpine_version="alpine3.23"
fi
image_tag=${version}-${alpine_version}
minor_image_tag=${minor_version}-${alpine_version}
full_image_tag=${full_version}-${alpine_version}
;;
esac
echo "image_tag=${image_tag}" >> $GITHUB_ENV
echo "minor_image_tag=${minor_image_tag}" >> $GITHUB_ENV
echo "full_image_tag=${full_image_tag}" >> $GITHUB_ENV
- name: Build and push image
if: env.build == 'true'
uses: docker/build-push-action@v6
with:
context: ${{ matrix.name }}/${{ matrix.branch }}/${{ matrix.suite }}/
platforms: linux/loong64
push: true
tags: |
ghcr.io/${{ github.repository_owner }}/${{ matrix.name }}:${{ env.image_tag }}
ghcr.io/${{ github.repository_owner }}/${{ matrix.name }}:${{ matrix.branch }}-perl
ghcr.io/${{ github.repository_owner }}/${{ matrix.name }}:${{ env.full_image_tag }}
ghcr.io/${{ github.repository_owner }}/${{ matrix.name }}:${{ env.minor_image_tag }}
ghcr.io/${{ github.repository_owner }}/${{ matrix.name }}:${{ matrix.branch }}-${{ matrix.suite }}
ghcr.io/${{ github.repository_owner }}/${{ matrix.name }}:${{ env.full_version }}-${{ matrix.suite }}
ghcr.io/${{ github.repository_owner }}/${{ matrix.name }}:${{ env.minor_version }}-${{ matrix.suite }}
- name: Prepare configuration
run: |
wget -qO- https://github.com/google/go-containerregistry/releases/latest/download/go-containerregistry_Linux_x86_64.tar.gz | sudo tar -xzf - -C /usr/local/bin/ crane
sudo chmod +x /usr/local/bin/crane
sudo chown root:root /usr/local/bin/crane
- name: Pull and Push Images
run: |
if [ "${{ matrix.branch }}" = "${{ matrix.latest_branch }}" ] || [ "${{ matrix.suite }}" = "debian" ]; then
crane cp ghcr.io/${{ github.repository_owner }}/${{ matrix.name }}:${{ env.full_version }}-${{ matrix.suite }} ghcr.io/${{ github.repository_owner }}/${{ matrix.name }}:${{ env.full_version }}-perl
crane cp ghcr.io/${{ github.repository_owner }}/${{ matrix.name }}:${{ env.full_version }}-${{ matrix.suite }} ghcr.io/${{ github.repository_owner }}/${{ matrix.name }}:${{ env.minor_version }}-perl
fi