-
Notifications
You must be signed in to change notification settings - Fork 0
439 lines (374 loc) · 14.3 KB
/
Copy pathrelease.yml
File metadata and controls
439 lines (374 loc) · 14.3 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
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
name: Release
on:
push:
tags:
- "[0-9]+.[0-9]+.[0-9]+"
- "[0-9]+.[0-9]+.[0-9]+-*"
workflow_dispatch:
inputs:
tag:
description: "Tag to release (e.g., 1.0.0). If empty, uses current commit."
required: false
type: string
permissions:
contents: write
jobs:
#============================================================================
# Create release
#============================================================================
create-release:
name: Create Release
runs-on: ubuntu-latest
outputs:
tag: ${{ steps.tag.outputs.tag }}
steps:
- name: Checkout code
uses: actions/checkout@v6
with:
ref: ${{ github.event.inputs.tag || github.ref }}
fetch-depth: 0 # Fetch all history and tags
- name: Extract tag name
id: tag
run: |
if [ -n "${{ github.event.inputs.tag }}" ]; then
TAG="${{ github.event.inputs.tag }}"
else
TAG="${GITHUB_REF#refs/tags/}"
fi
echo "tag=$TAG" >> $GITHUB_OUTPUT
echo "Creating release for tag: $TAG"
# Get previous release tag (excludes pre-releases like -rc1, -alpha, etc.)
PREV_TAG=$(git tag --sort=-v:refname | grep -E '^[0-9]+\.[0-9]+\.[0-9]+$' | grep -v "^$TAG$" | head -1)
echo "prev_tag=$PREV_TAG" >> $GITHUB_OUTPUT
echo "Previous release tag: $PREV_TAG"
# Create GitHub-compatible anchor for CHANGELOG link
# GitHub converts "## [X.Y.Z] - YYYY-MM-DD" to "#xyz---yyyy-mm-dd"
ANCHOR=$(echo "$TAG" | sed 's/\.//g')
DATE=$(date -u +%Y-%m-%d)
FULL_ANCHOR="${ANCHOR}---${DATE}"
echo "anchor=$FULL_ANCHOR" >> $GITHUB_OUTPUT
echo "Changelog anchor: #$FULL_ANCHOR"
- name: Verify tag format
run: |
TAG="${{ steps.tag.outputs.tag }}"
if [[ ! "$TAG" =~ ^[0-9]+\.[0-9]+\.[0-9]+(-[a-zA-Z0-9]+)?$ ]]; then
echo "::warning::Tag '$TAG' doesn't follow semantic versioning (X.Y.Z)"
fi
- name: Create Release
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ steps.tag.outputs.tag }}
name: nfx-stringutils ${{ steps.tag.outputs.tag }}
draft: true
prerelease: false
generate_release_notes: true
fail_on_unmatched_files: false
body: |
nfx-stringutils ${{ steps.tag.outputs.tag }} has been released.
📜 [Changelog](https://github.com/${{ github.repository }}/blob/main/CHANGELOG.md#${{ steps.tag.outputs.anchor }})
#============================================================================
# Build documentation
#============================================================================
build-documentation:
name: Build Documentation
needs: create-release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
with:
ref: ${{ needs.create-release.outputs.tag }}
- name: Cache Doxygen
id: cache-doxygen
uses: actions/cache@v4
with:
path: ~/doxygen-1.15.0
key: doxygen-1.15.0-linux
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y cmake ninja-build graphviz
if [ ! -f ~/doxygen-1.15.0/bin/doxygen ]; then
wget https://www.doxygen.nl/files/doxygen-1.15.0.linux.bin.tar.gz
tar -xzf doxygen-1.15.0.linux.bin.tar.gz -C ~/
fi
sudo cp ~/doxygen-1.15.0/bin/doxygen /usr/local/bin/
doxygen --version
- name: Configure CMake
run: |
cmake -B build -G Ninja \
-DCMAKE_BUILD_TYPE=Release \
-DNFX_STRINGUTILS_BUILD_DOCUMENTATION=ON
- name: Build Documentation
run: cmake --build build --target nfx-stringutils-documentation
- name: Upload documentation artifact
uses: actions/upload-artifact@v5
with:
name: documentation
path: build/doc/html/
retention-days: 1
#============================================================================
# Package documentation
#============================================================================
package-documentation:
name: Documentation Package
needs: [create-release, build-documentation]
runs-on: ubuntu-latest
steps:
- name: Download documentation
uses: actions/download-artifact@v5
with:
name: documentation
path: nfx-stringutils-${{ needs.create-release.outputs.tag }}-Documentation
- name: Create documentation archive
run: |
tar -czf nfx-stringutils-${{ needs.create-release.outputs.tag }}-Documentation.tar.gz nfx-stringutils-${{ needs.create-release.outputs.tag }}-Documentation/
zip -r nfx-stringutils-${{ needs.create-release.outputs.tag }}-Documentation.zip nfx-stringutils-${{ needs.create-release.outputs.tag }}-Documentation/
- name: Generate checksums
run: |
sha256sum nfx-stringutils-${{ needs.create-release.outputs.tag }}-Documentation.tar.gz > SHA256SUMS-docs.txt
sha256sum nfx-stringutils-${{ needs.create-release.outputs.tag }}-Documentation.zip >> SHA256SUMS-docs.txt
cat SHA256SUMS-docs.txt
- name: Upload documentation packages
uses: actions/upload-artifact@v5
with:
name: documentation-packages
path: |
nfx-stringutils-${{ needs.create-release.outputs.tag }}-Documentation.tar.gz
nfx-stringutils-${{ needs.create-release.outputs.tag }}-Documentation.zip
SHA256SUMS-docs.txt
retention-days: 7
- name: Upload to release
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ needs.create-release.outputs.tag }}
draft: true
files: |
nfx-stringutils-${{ needs.create-release.outputs.tag }}-Documentation.tar.gz
nfx-stringutils-${{ needs.create-release.outputs.tag }}-Documentation.zip
SHA256SUMS-docs.txt
#============================================================================
# Build Linux packages (GCC)
#============================================================================
build-linux-gcc:
name: Linux GCC Packages
needs: [create-release, build-documentation]
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
with:
ref: ${{ needs.create-release.outputs.tag }}
- name: Setup ccache
uses: hendrikmuhs/ccache-action@v1.2
with:
key: linux-gcc-release
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y build-essential cmake ninja-build rpm ccache
- name: Install GCC-14
run: |
sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
sudo apt-get update
sudo apt-get install -y g++-14
g++-14 --version
- name: Configure CMake
run: |
cmake -B build -G Ninja \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_CXX_COMPILER=g++-14 \
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache \
-DNFX_STRINGUTILS_BUILD_TESTS=OFF \
-DNFX_STRINGUTILS_BUILD_SAMPLES=OFF \
-DNFX_STRINGUTILS_BUILD_BENCHMARKS=OFF \
-DNFX_STRINGUTILS_BUILD_DOCUMENTATION=ON \
-DNFX_STRINGUTILS_INSTALL_PROJECT=ON \
-DNFX_STRINGUTILS_PACKAGE_ARCHIVE=ON \
-DNFX_STRINGUTILS_PACKAGE_DEB=ON \
-DNFX_STRINGUTILS_PACKAGE_RPM=ON
- name: Download documentation
uses: actions/download-artifact@v5
with:
name: documentation
path: build/doc/html
- name: Create documentation symlink
run: |
cd build/doc
ln -s html/index.html index.html
- name: Build
run: cmake --build build --config Release --parallel
- name: Generate packages
run: |
cd build
cpack -C Release
- name: Verify packages created
run: |
echo "Packages created:"
ls -lh build/packages/
# Verify expected package types exist
PACKAGE_COUNT=$(ls -1 build/packages/*.{deb,rpm,tar.gz} 2>/dev/null | wc -l)
if [ "$PACKAGE_COUNT" -eq 0 ]; then
echo "::error::No packages were created!"
exit 1
fi
echo "Found $PACKAGE_COUNT package(s)"
- name: Generate checksums
run: |
cd build/packages
sha256sum *.deb *.rpm *.tar.gz > SHA256SUMS.txt 2>/dev/null || true
cat SHA256SUMS.txt
- name: Upload build artifacts
uses: actions/upload-artifact@v5
if: always()
with:
name: linux-gcc-packages
path: build/packages/
retention-days: 7
- name: Upload to release
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ needs.create-release.outputs.tag }}
draft: true
files: |
build/packages/*.deb
build/packages/*.rpm
build/packages/*.tar.gz
build/packages/SHA256SUMS.txt
#============================================================================
# Build Windows packages (MSVC)
#============================================================================
build-windows-msvc:
name: Windows MSVC Packages
needs: [create-release, build-documentation]
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
with:
ref: ${{ needs.create-release.outputs.tag }}
- name: Setup MSVC environment
uses: ilammy/msvc-dev-cmd@v1
- name: Install dependencies
run: choco install wixtoolset ninja -y
- name: Verify WiX installation
run: |
where.exe candle
where.exe light
candle -?
- name: Configure CMake
run: |
cmake -B build -G Ninja `
-DCMAKE_BUILD_TYPE=Release `
-DCPACK_SYSTEM_NAME=MSVC `
-DNFX_STRINGUTILS_BUILD_TESTS=OFF `
-DNFX_STRINGUTILS_BUILD_SAMPLES=OFF `
-DNFX_STRINGUTILS_BUILD_BENCHMARKS=OFF `
-DNFX_STRINGUTILS_BUILD_DOCUMENTATION=ON `
-DNFX_STRINGUTILS_INSTALL_PROJECT=ON `
-DNFX_STRINGUTILS_PACKAGE_ARCHIVE=ON `
-DNFX_STRINGUTILS_PACKAGE_WIX=ON
- name: Download documentation
uses: actions/download-artifact@v5
with:
name: documentation
path: build/doc/html
- name: Create Windows batch file to open documentation
run: |
New-Item -ItemType Directory -Force -Path build/doc
Set-Content -Path "build/doc/index.html.cmd" -Value "@echo off"
Add-Content -Path "build/doc/index.html.cmd" -Value "start `"`" `"%~dp0html\index.html`""
Write-Host "Created portable batch file: index.html.cmd"
- name: Build
run: cmake --build build --config Release --parallel
- name: Generate packages
run: |
cd build
cpack -C Release
- name: Verify packages created
run: |
Write-Host "Packages created:"
Get-ChildItem build/packages/ | Format-Table Name, Length
$packageCount = (Get-ChildItem build/packages/ -Include *.msi,*.zip -Recurse).Count
if ($packageCount -eq 0) {
Write-Host "::error::No packages were created!"
exit 1
}
Write-Host "Found $packageCount package(s)"
- name: Generate checksums
run: |
cd build/packages
Get-ChildItem -Include *.msi,*.zip -Recurse | ForEach-Object {
$hash = (Get-FileHash $_.FullName -Algorithm SHA256).Hash
"$hash $($_.Name)" | Out-File -Append SHA256SUMS.txt -Encoding ASCII
}
Get-Content SHA256SUMS.txt
- name: Upload build artifacts
uses: actions/upload-artifact@v5
if: always()
with:
name: windows-msvc-packages
path: build/packages/
retention-days: 7
- name: Upload to release
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ needs.create-release.outputs.tag }}
draft: true
files: |
build/packages/*.msi
build/packages/*MSVC*.zip
build/packages/SHA256SUMS.txt
#============================================================================
# Build source package
#============================================================================
build-source:
name: Source Package
needs: create-release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
with:
ref: ${{ needs.create-release.outputs.tag }}
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y cmake ninja-build
- name: Configure CMake
run: |
cmake -B build -G Ninja \
-DCMAKE_BUILD_TYPE=Release \
-DNFX_STRINGUTILS_PACKAGE_SOURCE=ON
- name: Generate source package
run: |
cd build
cpack --config CPackSourceConfig.cmake
- name: Verify source package created
run: |
echo "Source packages created:"
ls -lh build/packages/
PACKAGE_COUNT=$(ls -1 build/packages/*Source* 2>/dev/null | wc -l)
if [ "$PACKAGE_COUNT" -eq 0 ]; then
echo "::error::No source packages were created!"
exit 1
fi
echo "Found $PACKAGE_COUNT source package(s)"
- name: Generate checksums
run: |
cd build/packages
sha256sum *Source* > SHA256SUMS-source.txt 2>/dev/null || true
cat SHA256SUMS-source.txt
- name: Upload build artifacts
uses: actions/upload-artifact@v5
if: always()
with:
name: source-packages
path: build/packages/
retention-days: 7
- name: Upload to release
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ needs.create-release.outputs.tag }}
draft: true
files: |
build/packages/*Source*
build/packages/SHA256SUMS-source.txt