-
Notifications
You must be signed in to change notification settings - Fork 0
340 lines (312 loc) · 15.5 KB
/
release.yml
File metadata and controls
340 lines (312 loc) · 15.5 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
name: Release
# ROADMAP §6 N6.2 — manual-trigger release workflow:
# 1. Requires the reproducible-build verifier to pass for the same commit.
# 2. Runs release-variant Roborazzi screenshot verification.
# 3. Builds the release variant.
# 4. Signs with the keystore stored as an encrypted secret.
# 5. Uploads the signed APK + SHA-256 manifest to a GitHub Release.
# 6. NOTICE / LICENSES attribution check (Apache-2.0 + SCOWL + LDNOOBW + FlorisBoard upstream).
#
# Required repo secrets (set up under Settings → Secrets and variables → Actions):
# SIGNING_KEYSTORE_BASE64 — base64-encoded contents of the .jks file
# SIGNING_KEYSTORE_PASSWORD — keystore password
# SIGNING_KEY_ALIAS — key alias inside the keystore
# SIGNING_KEY_PASSWORD — key password
#
# If the secrets are absent (e.g. a fork running its own dispatch), the workflow
# falls back to producing an unsigned APK and skips the Release-create step;
# this lets contributors validate the build pipeline without owning the signing key.
on:
workflow_dispatch:
inputs:
version:
description: "Release version (must match gradle.properties projectVersionName, e.g. 1.7.2)"
required: true
type: string
draft:
description: "Create the GitHub Release as a draft"
required: false
type: boolean
default: false
permissions:
contents: write
jobs:
reproducible:
name: Reproducible APK verification
uses: ./.github/workflows/reproducible-build.yml
permissions:
contents: read
build:
needs: reproducible
runs-on: ubuntu-latest
env:
SIGNING_KEYSTORE_BASE64: ${{ secrets.SIGNING_KEYSTORE_BASE64 }}
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
with:
submodules: recursive
fetch-depth: 0
- uses: gradle/actions/wrapper-validation@48b5f213c81028ace310571dc5ec0fbbca0b2947 # v4
- name: Set up JDK 17
uses: actions/setup-java@c1e323688fd81a25caa38c78aa6df2d33d3e20d9 # v4
with:
java-version: 17
distribution: temurin
- name: Cache Gradle
uses: gradle/actions/setup-gradle@48b5f213c81028ace310571dc5ec0fbbca0b2947 # v4
- name: Make gradlew executable
run: chmod +x ./gradlew
- name: Verify version matches input
run: |
declared=$(grep -E '^projectVersionName=' gradle.properties | cut -d= -f2)
if [ "$declared" != "${{ inputs.version }}" ]; then
echo "::error::projectVersionName ($declared) does not match input version (${{ inputs.version }}). Bump gradle.properties first."
exit 1
fi
- name: Verify NOTICE / LICENSES attributions present
run: |
test -f NOTICE || (echo "NOTICE missing"; exit 1)
test -d LICENSES || (echo "LICENSES/ missing"; exit 1)
- name: No-network contract check (N7.1)
run: ./gradlew :app:verifyNoInternetPermission
# Pin the personal-dictionary + clipboard excludes from
# data_extraction_rules.xml against accidental rewrite at release time.
# Same gate as android.yml; calling it explicitly here so a stale tree
# cannot cut a release with a regressed extraction policy.
- name: Verify data-extraction rules
run: ./gradlew :app:verifyDataExtractionRules
- name: Run unit tests
run: ./gradlew :app:testDebugUnitTest
# F24 — release resources / BuildConfig can drift from the debug visual
# gate. The app module exposes :app:verifyRoborazziRelease as a stable
# alias backed by the non-shipping releaseRoborazzi variant, which
# initWith(release) but carries only the screenshot host overlay. Keep
# this before APK signing/publication so a release-only screenshot
# regression blocks the dispatch.
- name: Roborazzi visual-regression verify (release variant)
run: ./gradlew :app:verifyRoborazziRelease
- name: Lint debug
run: ./gradlew :app:lintDebug
# ROADMAP matrix #9 + #44 — capture OSV scan status into the release body so each
# tag carries a dated "OSV scan: ..." appendix. `continue-on-error: true` ensures
# the release still ships if OSV reports something — the result is recorded either
# way so users can reason about how stale / clean the dep tree was on release day.
# See `docs/SECURITY.md` for the policy.
- name: Generate Gradle dependency tree for OSV scan
run: ./gradlew :app:dependencies --configuration releaseRuntimeClasspath > gradle-deps.txt
- name: Run OSV-Scanner against the release tree
id: osv-scan
continue-on-error: true
env:
# SHA-256 of google/osv-scanner v2.0.2 linux_amd64. Pin the binary
# by content hash so a compromised GitHub Releases CDN cannot swap a
# malicious build under the same version tag. Refresh this value
# alongside any v2.0.2 -> v2.x.y bump and re-record the digest.
OSV_BINARY_SHA256: "3abcfd7126c453a00421487e721b296e0cb68085bd431d6cef60872774170fc8"
run: |
set +e
curl -sSL -o osv-scanner "https://github.com/google/osv-scanner/releases/download/v2.0.2/osv-scanner_linux_amd64"
actual_sha="$(sha256sum osv-scanner | awk '{print $1}')"
if [ "$actual_sha" != "$OSV_BINARY_SHA256" ]; then
echo "::error::osv-scanner SHA-256 mismatch."
echo " expected: $OSV_BINARY_SHA256"
echo " actual: $actual_sha"
echo " Refusing to execute an unverified binary."
exit 1
fi
chmod +x osv-scanner
./osv-scanner --recursive --skip-git --format=json ./ > osv-result.json
osv_exit=$?
echo "osv-exit=$osv_exit" >> "$GITHUB_OUTPUT"
set -e
- name: Summarise OSV result into release appendix
run: |
scan_date=$(date -u +"%Y-%m-%d")
scanner_version="osv-scanner v2.0.2"
scan_completed=true
if [ -s osv-result.json ]; then
vuln_count=$(python3 -c "import json;d=json.load(open('osv-result.json'));n=sum(len(p.get('vulnerabilities', [])) for r in d.get('results', []) for p in r.get('packages', []));print(n)")
else
vuln_count="unknown"
scan_completed=false
fi
{
echo ""
echo "---"
echo ""
echo "### Security scan (OSV)"
echo ""
echo "- **Scan date (UTC):** $scan_date"
echo "- **Scanner:** $scanner_version"
if [ "$scan_completed" = "false" ]; then
echo "- **Result:** ⚠️ Scan did NOT complete — \`osv-result.json\` is missing or empty. Vulnerability status is unknown for this release. Check the workflow logs for the scan failure reason."
elif [ "$vuln_count" = "0" ]; then
echo "- **Result:** 0 known vulnerabilities in the \`releaseRuntimeClasspath\` of \`:app\`."
else
echo "- **Result:** $vuln_count advisory match(es) — see \`osv-result.json\` in the workflow artifacts. A clean scan today does not imply forever-immunity; see [\`docs/SECURITY.md\`](https://github.com/SysAdminDoc/SwiftFloris/blob/master/docs/SECURITY.md)."
fi
echo ""
echo "Reproduce locally: \`./gradlew :app:dependencies --configuration releaseRuntimeClasspath > gradle-deps.txt && osv-scanner --recursive --skip-git ./\`. See [\`docs/SECURITY.md\`](https://github.com/SysAdminDoc/SwiftFloris/blob/master/docs/SECURITY.md) for what \"clean\" means and doesn't mean."
} > RELEASE_OSV_SUMMARY.md
- name: Upload OSV scan artifacts
if: always()
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
with:
name: swiftfloris-v${{ inputs.version }}-osv
path: |
osv-result.json
gradle-deps.txt
RELEASE_OSV_SUMMARY.md
- name: Decode keystore
id: decode-keystore
if: ${{ env.SIGNING_KEYSTORE_BASE64 != '' }}
env:
SIGNING_KEYSTORE_BASE64: ${{ secrets.SIGNING_KEYSTORE_BASE64 }}
run: |
set -euo pipefail
# Restrict file-mode of the keystore the moment it appears on disk.
# `echo "$VAR" | base64 -d` adds a trailing newline to its input, so
# any keystore whose base64 encoding lacks a trailing newline would
# have a stray 0x0a appended pre-decode and the decoded bytes would
# be one trailing-byte off. `printf '%s' "$VAR"` writes the exact
# secret with no trailer.
umask 077
keystore_path="$RUNNER_TEMP/keystore.jks"
printf '%s' "$SIGNING_KEYSTORE_BASE64" | base64 -d > "$keystore_path"
chmod 600 "$keystore_path"
# Verify the decoded file is non-empty and looks like a Java keystore
# (magic bytes: FE ED FE ED for JKS, or 30 82 for PKCS#12 ASN.1
# DER SEQUENCE). Anything else points at a secret-encoding mishap
# and the build should fail fast rather than ship an unsigned APK
# silently.
if [ ! -s "$keystore_path" ]; then
echo "::error::Decoded keystore is empty — check SIGNING_KEYSTORE_BASE64 secret." >&2
exit 1
fi
head -c 4 "$keystore_path" | od -An -tx1 | tr -d ' \n' > "$RUNNER_TEMP/keystore.magic"
magic=$(cat "$RUNNER_TEMP/keystore.magic")
case "$magic" in
feedfeed) ;; # JKS
3082*) ;; # PKCS#12 (DER SEQUENCE)
*)
echo "::error::Decoded keystore does not start with a JKS or PKCS#12 magic prefix (got: $magic). Check SIGNING_KEYSTORE_BASE64 encoding." >&2
exit 1
;;
esac
rm -f "$RUNNER_TEMP/keystore.magic"
echo "keystore-path=$keystore_path" >> "$GITHUB_OUTPUT"
- name: Build signed release APK
if: ${{ env.SIGNING_KEYSTORE_BASE64 != '' }}
env:
SIGNING_KEYSTORE_BASE64: ${{ secrets.SIGNING_KEYSTORE_BASE64 }}
SIGNING_KEYSTORE_PASSWORD: ${{ secrets.SIGNING_KEYSTORE_PASSWORD }}
SIGNING_KEY_ALIAS: ${{ secrets.SIGNING_KEY_ALIAS }}
SIGNING_KEY_PASSWORD: ${{ secrets.SIGNING_KEY_PASSWORD }}
KEYSTORE_PATH: ${{ steps.decode-keystore.outputs.keystore-path }}
run: ./gradlew :app:assembleRelease
- name: Build unsigned release APK (fallback when no signing secrets)
if: ${{ env.SIGNING_KEYSTORE_BASE64 == '' }}
run: ./gradlew :app:assembleRelease
- name: Locate release APK
id: locate-apk
run: |
apk=$(ls app/build/outputs/apk/release/*.apk | head -n 1)
test -f "$apk" || (echo "::error::No release APK produced"; exit 1)
echo "apk-path=$apk" >> "$GITHUB_OUTPUT"
echo "apk-name=$(basename $apk)" >> "$GITHUB_OUTPUT"
# ROADMAP §7 Next-12.4 — 16 KB native-library alignment guard on the
# release variant. android.yml runs the same check on the debug APK
# every PR, but the release variant applies R8 minify/shrink and uses
# different signing — its native .so layout is not transitively
# validated by the debug build. Run zipalign here so a Play-style
# 16-KB alignment regression cannot ship a tag. No-op for SwiftFloris
# today (zero native libs), but engages the moment Next-2 (whisper.cpp),
# N1.2 (CleverKeys ONNX), L1 (LiteRT-LM addon-tier), or L7 (MCP daemon)
# bring native code back into the release variant.
- name: 16 KB native-library alignment guard (release variant)
env:
APK: ${{ steps.locate-apk.outputs.apk-path }}
run: |
set -euo pipefail
ANDROID_HOME="${ANDROID_HOME:-/usr/local/lib/android/sdk}"
BUILD_TOOLS=$(ls -1 "$ANDROID_HOME/build-tools" | sort -V | tail -1)
ZIPALIGN="$ANDROID_HOME/build-tools/$BUILD_TOOLS/zipalign"
if [ ! -x "$ZIPALIGN" ]; then
echo "::error::zipalign not found at $ZIPALIGN" >&2
exit 1
fi
# zipalign -P 16 = require 16 KB alignment for *.so entries
# (page-size in KB units). Exits non-zero if any .so is misaligned.
"$ZIPALIGN" -c -P 16 -v 4 "$APK" || {
echo "::error::Release APK contains a native library aligned to less than 16 KB. Rebuild against NDK r28+ (see ROADMAP §7 Next-12.4 + [STD-A15-16KB])."
exit 1
}
echo "Release APK: all shipped native libraries (if any) are 16 KB aligned."
- name: Compute SHA-256 manifest
id: sha
run: |
cd "$(dirname '${{ steps.locate-apk.outputs.apk-path }}')"
sha256sum "$(basename '${{ steps.locate-apk.outputs.apk-path }}')" > SHA256SUMS
echo "manifest-path=$(pwd)/SHA256SUMS" >> "$GITHUB_OUTPUT"
echo "## Artifact SHA-256" >> "$GITHUB_STEP_SUMMARY"
echo '```' >> "$GITHUB_STEP_SUMMARY"
cat SHA256SUMS >> "$GITHUB_STEP_SUMMARY"
echo '```' >> "$GITHUB_STEP_SUMMARY"
- name: Upload artifacts
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
with:
name: swiftfloris-v${{ inputs.version }}
path: |
${{ steps.locate-apk.outputs.apk-path }}
${{ steps.sha.outputs.manifest-path }}
- name: Create GitHub Release
if: ${{ env.SIGNING_KEYSTORE_BASE64 != '' }}
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SIGNING_KEYSTORE_BASE64: ${{ secrets.SIGNING_KEYSTORE_BASE64 }}
# Pass dynamic values via env to avoid interpolating `${{ … }}`
# directly into the shell command line (consistent with the
# validate-strings-no-translations.yml hardening pattern).
RELEASE_VERSION: ${{ inputs.version }}
RELEASE_DRAFT: ${{ inputs.draft }}
RELEASE_TARGET: ${{ github.ref_name }}
APK_PATH: ${{ steps.locate-apk.outputs.apk-path }}
MANIFEST_PATH: ${{ steps.sha.outputs.manifest-path }}
run: |
set -euo pipefail
tag="v${RELEASE_VERSION}"
# Compose the release body: extract the per-version section from CHANGELOG.md when present,
# fall back to autogen, then append the OSV scan appendix (matrix #9 + #44).
# The section runs from the version's <a id="vX.Y.Z"></a> anchor to the next <a id="v..."> anchor.
body_file="$(mktemp)"
if [ -f CHANGELOG.md ]; then
awk -v ver="$RELEASE_VERSION" '
$0 == "<a id=\"v" ver "\"></a>" { in_section = 1; next }
in_section && /^<a id="v[0-9]/ { exit }
in_section { print }
' CHANGELOG.md > "$body_file"
fi
if [ -f RELEASE_OSV_SUMMARY.md ]; then
cat RELEASE_OSV_SUMMARY.md >> "$body_file"
fi
draft_arg=()
if [ "$RELEASE_DRAFT" = "true" ]; then
draft_arg+=(--draft)
fi
if [ -s "$body_file" ]; then
gh release create "$tag" \
"$APK_PATH" \
"$MANIFEST_PATH" \
--title "SwiftFloris v${RELEASE_VERSION}" \
--notes-file "$body_file" \
"${draft_arg[@]}" \
--target "$RELEASE_TARGET"
else
gh release create "$tag" \
"$APK_PATH" \
"$MANIFEST_PATH" \
--title "SwiftFloris v${RELEASE_VERSION}" \
--generate-notes \
"${draft_arg[@]}" \
--target "$RELEASE_TARGET"
fi