-
Notifications
You must be signed in to change notification settings - Fork 2
591 lines (526 loc) · 20.8 KB
/
Copy pathrelease.yml
File metadata and controls
591 lines (526 loc) · 20.8 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
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
name: Release
on:
workflow_dispatch:
inputs:
bump:
description: Version bump to release
type: choice
required: true
options:
- patch
- minor
- major
- current
concurrency:
group: release-${{ github.ref_name }}
cancel-in-progress: false
permissions:
contents: write
env:
# The workspace member that ships as the loadable module. Its package name is
# the artifact name and the library name; `crates/template-bus` rides along on
# the same inherited version and is not packaged separately.
RELEASE_PACKAGE: template
jobs:
prepare:
name: Prepare release
if: ${{ github.ref == 'refs/heads/main' }}
runs-on: ubuntu-latest
outputs:
crate_name: ${{ steps.version.outputs.crate_name }}
next_version: ${{ steps.version.outputs.next_version }}
tag: ${{ steps.version.outputs.tag }}
steps:
- uses: actions/checkout@v7
with:
fetch-depth: 0
submodules: recursive
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- uses: taiki-e/install-action@v2
with:
tool: cargo-llvm-cov
- uses: Swatinem/rust-cache@v2
- name: Check formatting
run: cargo fmt --all -- --check
- name: Clippy
run: cargo clippy --all-targets --all-features -- -D warnings
- name: Build
run: cargo build --all-targets --all-features
- name: Test
run: cargo test --all-features
- name: Require 90% line coverage in every source file
run: .github/scripts/check-file-coverage.sh 90 target/coverage.json
- name: Build documentation
env:
RUSTDOCFLAGS: -D warnings
run: cargo doc --no-deps --all-features
- name: Compute next version
id: version
shell: bash
run: |
set -euo pipefail
metadata="$(cargo metadata --format-version 1 --no-deps)"
crate_name="$(jq -r --arg name "$RELEASE_PACKAGE" \
'.packages[] | select(.name == $name) | .name' <<< "$metadata")"
current_version="$(jq -r --arg name "$RELEASE_PACKAGE" \
'.packages[] | select(.name == $name) | .version' <<< "$metadata")"
if [[ -z "$crate_name" || "$crate_name" == "null" ]]; then
echo "Could not resolve the crate name" >&2
exit 1
fi
if [[ -z "$current_version" || "$current_version" == "null" ]]; then
echo "Could not resolve the current crate version" >&2
exit 1
fi
IFS=. read -r major minor patch <<< "$current_version"
case "${{ inputs.bump }}" in
current)
;;
major)
major=$((major + 1))
minor=0
patch=0
;;
minor)
minor=$((minor + 1))
patch=0
;;
patch)
patch=$((patch + 1))
;;
*)
echo "Unsupported bump: ${{ inputs.bump }}" >&2
exit 1
;;
esac
next_version="${major}.${minor}.${patch}"
tag="v${next_version}"
git fetch --tags origin
if git rev-parse --verify --quiet "refs/tags/${tag}"; then
if [[ "${{ inputs.bump }}" != "current" ]]; then
echo "Tag ${tag} already exists" >&2
exit 1
fi
tagged_version="$(
git show "${tag}:Cargo.toml" \
| sed -n '/^\[workspace\.package\]/,/^\[/ s/^version = "\([^"]*\)"/\1/p' \
| head -n 1
)"
if [[ "$tagged_version" != "$current_version" ]]; then
echo "Tag ${tag} does not contain version ${current_version}" >&2
exit 1
fi
elif [[ "${{ inputs.bump }}" == "current" ]]; then
echo "Tag ${tag} does not exist; choose a semantic version bump" >&2
exit 1
fi
{
echo "crate_name=${crate_name}"
echo "current_version=${current_version}"
echo "next_version=${next_version}"
echo "tag=${tag}"
} >> "$GITHUB_OUTPUT"
- name: Update crate version
if: ${{ inputs.bump != 'current' }}
env:
CRATE_NAME: ${{ steps.version.outputs.crate_name }}
NEXT_VERSION: ${{ steps.version.outputs.next_version }}
run: |
set -euo pipefail
# One version for the whole workspace: every member inherits it with
# `version.workspace = true`, so this is the only edit needed.
perl -0pi -e 's/(\[workspace\.package\][\s\S]*?\nversion = ")[^"]+(")/$1$ENV{NEXT_VERSION}$2/' Cargo.toml
# `--workspace` re-resolves the local packages only, which is what a
# version bump changes. `-p <name> --precise` cannot express "and the
# other member moved too".
cargo update --workspace
released="$(cargo metadata --format-version 1 --no-deps \
| jq -r --arg name "$CRATE_NAME" \
'.packages[] | select(.name == $name) | .version')"
if [[ "$released" != "$NEXT_VERSION" ]]; then
echo "version bump did not take: expected ${NEXT_VERSION}, got ${released}" >&2
exit 1
fi
- name: Commit version bump and tag
if: ${{ inputs.bump != 'current' }}
env:
RELEASE_TAG: ${{ steps.version.outputs.tag }}
run: |
set -euo pipefail
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git add Cargo.toml Cargo.lock
git commit -m "Release ${RELEASE_TAG}"
git tag -a "${RELEASE_TAG}" -m "Release ${RELEASE_TAG}"
git push origin "HEAD:${GITHUB_REF_NAME}"
git push origin "${RELEASE_TAG}"
native-bundles:
name: Rust module bundle (${{ matrix.id }})
needs: prepare
strategy:
fail-fast: false
matrix:
include:
- id: ubuntu-22.04-x86_64
os: ubuntu-22.04
target: x86_64-unknown-linux-gnu
- id: ubuntu-22.04-arm64
os: ubuntu-22.04-arm
target: aarch64-unknown-linux-gnu
- id: ubuntu-24.04-x86_64
os: ubuntu-24.04
target: x86_64-unknown-linux-gnu
- id: ubuntu-24.04-arm64
os: ubuntu-24.04-arm
target: aarch64-unknown-linux-gnu
- id: macos-15-x86_64
os: macos-15-intel
target: x86_64-apple-darwin
- id: macos-15-arm64
os: macos-15
target: aarch64-apple-darwin
- id: macos-26-x86_64
os: macos-26-intel
target: x86_64-apple-darwin
- id: macos-26-arm64
os: macos-26
target: aarch64-apple-darwin
- id: windows-2022-x86_64
os: windows-2022
target: x86_64-pc-windows-msvc
- id: windows-2025-x86_64
os: windows-2025
target: x86_64-pc-windows-msvc
- id: windows-11-arm64
os: windows-11-arm
target: aarch64-pc-windows-msvc
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v7
with:
ref: ${{ needs.prepare.outputs.tag }}
persist-credentials: false
submodules: recursive
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- name: Verify native Rust target
shell: bash
env:
EXPECTED_TARGET: ${{ matrix.target }}
run: |
set -euo pipefail
actual_target="$(rustc -vV | sed -n 's/^host: //p')"
if [[ "$actual_target" != "$EXPECTED_TARGET" ]]; then
echo "expected ${EXPECTED_TARGET}, got ${actual_target}" >&2
exit 1
fi
- name: Build installable module
run: cargo build --locked --release --lib --package ${{ env.RELEASE_PACKAGE }}
- name: Verify Unix module through TinyBus loader
if: ${{ runner.os != 'Windows' }}
shell: bash
env:
CRATE_NAME: ${{ needs.prepare.outputs.crate_name }}
run: |
set -euo pipefail
library_name="${CRATE_NAME//-/_}"
case "$RUNNER_OS" in
Linux) module="target/release/lib${library_name}.so" ;;
macOS) module="target/release/lib${library_name}.dylib" ;;
*) echo "unsupported Unix runner: ${RUNNER_OS}" >&2; exit 1 ;;
esac
cargo run --locked --package template --example verify_module -- "$module"
- name: Verify Windows module through TinyBus loader
if: ${{ runner.os == 'Windows' }}
shell: pwsh
env:
CRATE_NAME: ${{ needs.prepare.outputs.crate_name }}
run: |
$ErrorActionPreference = 'Stop'
$libraryName = $env:CRATE_NAME.Replace('-', '_')
$module = "target/release/$libraryName.dll"
$verifyRoot = Join-Path $env:RUNNER_TEMP 'template-module-verify'
New-Item -ItemType Directory -Force $verifyRoot | Out-Null
$identity = [System.Security.Principal.WindowsIdentity]::GetCurrent()
$security = [System.Security.AccessControl.DirectorySecurity]::new()
$security.SetOwner($identity.User)
$security.SetAccessRuleProtection($true, $false)
$rights = [System.Security.AccessControl.FileSystemRights]::FullControl
$inheritance = [System.Security.AccessControl.InheritanceFlags]'ContainerInherit, ObjectInherit'
$propagation = [System.Security.AccessControl.PropagationFlags]::None
$access = [System.Security.AccessControl.AccessControlType]::Allow
foreach ($sidValue in @(
$identity.User.Value,
'S-1-5-18',
'S-1-5-32-544'
)) {
$sid = [System.Security.Principal.SecurityIdentifier]::new($sidValue)
$rule = [System.Security.AccessControl.FileSystemAccessRule]::new(
$sid,
$rights,
$inheritance,
$propagation,
$access
)
[void]$security.AddAccessRule($rule)
}
Set-Acl -LiteralPath $verifyRoot -AclObject $security
$verifiedModule = Join-Path $verifyRoot "$libraryName.dll"
Copy-Item -LiteralPath $module -Destination $verifiedModule
cargo run --locked --package template --example verify_module -- $verifiedModule
- name: Assemble Unix module package
if: ${{ runner.os != 'Windows' }}
id: unix_package
shell: bash
env:
BUNDLE_ID: ${{ matrix.id }}
CRATE_NAME: ${{ needs.prepare.outputs.crate_name }}
VERSION: ${{ needs.prepare.outputs.next_version }}
run: |
set -euo pipefail
library_name="${CRATE_NAME//-/_}"
case "$RUNNER_OS" in
Linux) module="target/release/lib${library_name}.so" ;;
macOS) module="target/release/lib${library_name}.dylib" ;;
*) echo "unsupported Unix runner: ${RUNNER_OS}" >&2; exit 1 ;;
esac
if [[ ! -f "$module" ]]; then
echo "module artifact is missing: ${module}" >&2
exit 1
fi
package_name="${CRATE_NAME}-${VERSION}-${BUNDLE_ID}"
package_root="dist/${package_name}"
mkdir -p "$package_root"
install -m 755 "$module" "$package_root/"
install -m 644 LICENSE MODULE.md "$package_root/"
module_name="$(basename "$module")"
module_hash="$(shasum -a 256 "$package_root/$module_name" | awk '{print $1}')"
printf '"%s" = "%s"\n' "$module_name" "$module_hash" \
> "$package_root/modules.toml"
tar -C "$package_root" -czf "dist/${package_name}.tar.gz" .
echo "archive=dist/${package_name}.tar.gz" >> "$GITHUB_OUTPUT"
- name: Assemble Windows module package
if: ${{ runner.os == 'Windows' }}
id: windows_package
shell: pwsh
env:
BUNDLE_ID: ${{ matrix.id }}
CRATE_NAME: ${{ needs.prepare.outputs.crate_name }}
VERSION: ${{ needs.prepare.outputs.next_version }}
run: |
$ErrorActionPreference = 'Stop'
$libraryName = $env:CRATE_NAME.Replace('-', '_')
$module = "target/release/$libraryName.dll"
if (-not (Test-Path -LiteralPath $module -PathType Leaf)) {
throw "module artifact is missing: $module"
}
$packageName = "$env:CRATE_NAME-$env:VERSION-$env:BUNDLE_ID"
$packageRoot = "dist/$packageName"
New-Item -ItemType Directory -Force $packageRoot | Out-Null
Copy-Item -LiteralPath $module, 'LICENSE', 'MODULE.md' -Destination $packageRoot
$moduleName = Split-Path -Leaf $module
$hash = (Get-FileHash -LiteralPath "$packageRoot/$moduleName" -Algorithm SHA256).Hash.ToLowerInvariant()
$utf8 = [System.Text.UTF8Encoding]::new($false)
[System.IO.File]::WriteAllText(
"$packageRoot/modules.toml",
('"{0}" = "{1}"' -f $moduleName, $hash) + [Environment]::NewLine,
$utf8
)
$archive = "dist/$packageName.zip"
Compress-Archive -Path "$packageRoot/*" -DestinationPath $archive
"archive=$archive" >> $env:GITHUB_OUTPUT
- name: Upload Unix package
if: ${{ runner.os != 'Windows' }}
uses: actions/upload-artifact@v7
with:
name: ${{ needs.prepare.outputs.crate_name }}-${{ matrix.id }}
path: ${{ steps.unix_package.outputs.archive }}
if-no-files-found: error
- name: Upload Windows package
if: ${{ runner.os == 'Windows' }}
uses: actions/upload-artifact@v7
with:
name: ${{ needs.prepare.outputs.crate_name }}-${{ matrix.id }}
path: ${{ steps.windows_package.outputs.archive }}
if-no-files-found: error
distro-bundles:
name: Rust module bundle (${{ matrix.id }})
needs: prepare
strategy:
fail-fast: false
matrix:
include:
- id: fedora-43-x86_64
os: ubuntu-24.04
container: fedora:43
target: x86_64-unknown-linux-gnu
family: fedora
- id: fedora-43-arm64
os: ubuntu-24.04-arm
container: fedora:43
target: aarch64-unknown-linux-gnu
family: fedora
- id: fedora-44-x86_64
os: ubuntu-24.04
container: fedora:44
target: x86_64-unknown-linux-gnu
family: fedora
- id: fedora-44-arm64
os: ubuntu-24.04-arm
container: fedora:44
target: aarch64-unknown-linux-gnu
family: fedora
- id: archlinux-rolling-x86_64
os: ubuntu-24.04
container: archlinux:base-devel
target: x86_64-unknown-linux-gnu
family: archlinux
runs-on: ${{ matrix.os }}
container: ${{ matrix.container }}
steps:
- name: Install Fedora build tools
if: ${{ matrix.family == 'fedora' }}
run: dnf install -y gcc git gzip make perl tar
- name: Install Arch Linux build tools
if: ${{ matrix.family == 'archlinux' }}
run: pacman -Syu --noconfirm base-devel git
- uses: actions/checkout@v7
with:
ref: ${{ needs.prepare.outputs.tag }}
persist-credentials: false
submodules: recursive
- uses: dtolnay/rust-toolchain@stable
- name: Verify native Rust target
env:
EXPECTED_TARGET: ${{ matrix.target }}
run: |
set -euo pipefail
actual_target="$(rustc -vV | sed -n 's/^host: //p')"
if [[ "$actual_target" != "$EXPECTED_TARGET" ]]; then
echo "expected ${EXPECTED_TARGET}, got ${actual_target}" >&2
exit 1
fi
- name: Build installable module
run: cargo build --locked --release --lib --package ${{ env.RELEASE_PACKAGE }}
- name: Verify module through TinyBus loader
env:
CRATE_NAME: ${{ needs.prepare.outputs.crate_name }}
run: |
set -euo pipefail
library_name="${CRATE_NAME//-/_}"
verify_root="/opt/${CRATE_NAME}-module-verify"
install -d -m 700 "$verify_root"
install -m 755 "target/release/lib${library_name}.so" "$verify_root/"
cargo run --locked --package template --example verify_module -- \
"$verify_root/lib${library_name}.so"
- name: Assemble distribution module package
id: package
env:
BUNDLE_ID: ${{ matrix.id }}
CRATE_NAME: ${{ needs.prepare.outputs.crate_name }}
VERSION: ${{ needs.prepare.outputs.next_version }}
run: |
set -euo pipefail
library_name="${CRATE_NAME//-/_}"
module="target/release/lib${library_name}.so"
if [[ ! -f "$module" ]]; then
echo "module artifact is missing: ${module}" >&2
exit 1
fi
package_name="${CRATE_NAME}-${VERSION}-${BUNDLE_ID}"
package_root="dist/${package_name}"
mkdir -p "$package_root"
install -m 755 "$module" "$package_root/"
install -m 644 LICENSE MODULE.md "$package_root/"
module_name="$(basename "$module")"
module_hash="$(sha256sum "$package_root/$module_name" | awk '{print $1}')"
printf '"%s" = "%s"\n' "$module_name" "$module_hash" \
> "$package_root/modules.toml"
tar -C "$package_root" -czf "dist/${package_name}.tar.gz" .
echo "archive=dist/${package_name}.tar.gz" >> "$GITHUB_OUTPUT"
- name: Upload distribution package
uses: actions/upload-artifact@v7
with:
name: ${{ needs.prepare.outputs.crate_name }}-${{ matrix.id }}
path: ${{ steps.package.outputs.archive }}
if-no-files-found: error
github-release:
name: Create GitHub release
needs:
- prepare
- native-bundles
- distro-bundles
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
with:
ref: ${{ needs.prepare.outputs.tag }}
persist-credentials: false
submodules: recursive
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- uses: actions/download-artifact@v8
with:
pattern: '*'
path: release-assets
merge-multiple: true
- name: Create release checksum manifest with TinyBus
shell: bash
run: |
set -euo pipefail
shopt -s nullglob
assets=(release-assets/*.tar.gz release-assets/*.zip)
if [[ ${#assets[@]} -ne 16 ]]; then
echo "expected 16 module archives, found ${#assets[@]}" >&2
exit 1
fi
checksum_args=()
for asset in "${assets[@]}"; do
checksum_args+=(--path "$asset")
done
cargo run --manifest-path vendor/tinybus/Cargo.toml --locked \
--package tinybus --all-features --bin tinybus -- \
modules checksum "${checksum_args[@]}" \
--output release-assets/checksum.toml
- name: Create immutable release with module packages
env:
GH_TOKEN: ${{ github.token }}
RELEASE_TAG: ${{ needs.prepare.outputs.tag }}
REPOSITORY: ${{ github.repository }}
run: |
set -euo pipefail
if gh release view "$RELEASE_TAG" --repo "$REPOSITORY" >/dev/null 2>&1; then
echo "Release ${RELEASE_TAG} already exists; immutable assets are unchanged."
else
gh release create "$RELEASE_TAG" release-assets/* \
--repo "$REPOSITORY" \
--verify-tag \
--title "$RELEASE_TAG" \
--generate-notes
fi
- name: Verify the published module through TinyBus
shell: bash
env:
RELEASE_TAG: ${{ needs.prepare.outputs.tag }}
REPOSITORY: ${{ github.repository }}
CRATE_NAME: ${{ needs.prepare.outputs.crate_name }}
VERSION: ${{ needs.prepare.outputs.next_version }}
run: |
set -euo pipefail
archive="${CRATE_NAME}-${VERSION}-ubuntu-24.04-x86_64.tar.gz"
release_url="https://github.com/${REPOSITORY}/releases/tag/${RELEASE_TAG}"
sha256="$(
sed -n "s/^\"${archive}\" = \"\([0-9a-f]\{64\}\)\"$/\1/p" \
release-assets/checksum.toml
)"
if [[ -z "$sha256" ]]; then
echo "checksum missing for ${archive}" >&2
exit 1
fi
cargo run --manifest-path vendor/tinybus/Cargo.toml --locked \
--package tinybus --all-features --example github_module_host -- \
"$release_url" "$archive" "$sha256"
cargo run --locked --package template --example verify_github_release -- \
"$release_url" "$archive" "$sha256"