-
-
Notifications
You must be signed in to change notification settings - Fork 4k
473 lines (431 loc) · 19.5 KB
/
packages.yml
File metadata and controls
473 lines (431 loc) · 19.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
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
name: Packages
on:
push:
branches:
- master
- dev
- 'dev/**'
paths:
- 'packages/**'
- 'root-packages/**'
- 'x11-packages/**'
pull_request:
paths:
- 'packages/**'
- 'root-packages/**'
- 'x11-packages/**'
workflow_dispatch:
inputs:
packages:
description: "A space-separated names of packages selected for rebuilding"
required: true
free-space:
description: "Free space even if not building large package (useful when building a large number of packages)"
type: boolean
default: false
permissions: {} # none
concurrency:
# if this is a PR event, group = "pr-<number>", otherwise group = run_id so it never collides with other runs
group: ${{ github.event_name == 'pull_request' && format('pr-{0}', github.event.pull_request.number) || github.run_id }}
# only cancel in-progress when it’s a PR
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
jobs:
build:
permissions:
contents: read # actions/upload-artifact doesn't need contents: write
runs-on: ubuntu-24.04
strategy:
matrix:
target_arch: [aarch64, arm, i686, x86_64]
fail-fast: false
steps:
- name: Clone repository
uses: actions/checkout@v6
with:
fetch-depth: 1000
- name: Gather build summary
id: build-info
env:
MANUAL_INPUT_PACKAGES: ${{ github.event.inputs.packages }}
run: |
# We are intentionally not using .commits[0].id and .commits[-1].id as github seems to
# only send 20 commits in the payload for github action runs instead of the 2048 documented
# limit. Perhaps 2048 is the limit just for webhooks, where they haven't documented
# properly that the limit for github actions is only 20:
#
# https://docs.github.com/en/webhooks/webhook-events-and-payloads#push
OLD_COMMIT="${{ github.event.before }}"
HEAD_COMMIT="${{ github.event.after }}"
if [ "${{ github.event_name }}" != "workflow_dispatch" ]; then
BASE_REF="${{ github.event.pull_request.base.ref }}"
git fetch origin "${BASE_REF:-master}" 2>/dev/null
BASE_COMMIT="$(git merge-base "origin/${BASE_REF:-master}" "HEAD")"
if [ -z "${{ github.event.pull_request.base.sha }}" ]; then
if ! git log "$OLD_COMMIT" > /dev/null; then
if [ "$(git branch --show-current)" = "master" ]; then
echo "Force push detected on master branch. Unable to proceed."
exit 1
else
OLD_COMMIT=$(git fetch origin master >&2; git merge-base origin/master $HEAD_COMMIT)
fi
fi
echo "Processing commit range: ${OLD_COMMIT}..${HEAD_COMMIT}"
CHANGED_FILES=$(git diff-tree --no-commit-id --name-only -r "${OLD_COMMIT}" "${HEAD_COMMIT}")
else
# Pull requests.
echo "Processing pull request #${{ github.event.pull_request.number }}: ${BASE_COMMIT}..HEAD"
CHANGED_FILES=$(git diff-tree --no-commit-id --name-only -r "${BASE_COMMIT}" "HEAD")
fi
fi
mkdir -p ./artifacts ./debs
touch ./debs/.placeholder
if [[ "${{ github.event_name }}" == "pull_request" && -n "$(git rev-list --merges "$(git fetch origin master >&2; git merge-base origin/master $HEAD_COMMIT)..$HEAD_COMMIT")" ]]; then
# Github does not allow multiline errors, but it will interpret the escape sequence %0A as a line break.
echo "::error ::Merge commits are not allowed in pull requests.%0AYou should rebase your commits or squash them.%0Ahttps://docs.github.com/en/get-started/using-git/using-git-rebase-on-the-command-line"
exit 1
fi
OLD_COMMIT="$OLD_COMMIT" HEAD_COMMIT="$HEAD_COMMIT" GITHUB_TOKEN="${{ secrets.GITHUB_TOKEN }}" scripts/utils/termux_reuse_pr_build_artifacts.sh "${{ github.event_name }}" "${{ matrix.target_arch }}" || true
if [ "${{ github.event_name }}" != "workflow_dispatch" ]; then
# GitHub sometimes add merge commits at the end
# To prevent user confusion, filter them with --no-merges
# Process tag '%ci:no-build' that may be added as line to commit message.
# Forces CI to cancel current build with status 'passed'
if grep -qiP '^\s*%ci:no-build\s*$' <(git log --format="%B" -n 1 --no-merges "HEAD"); then
tar cf artifacts/debs-${{ matrix.target_arch }}.tar debs
echo "[!] Force exiting as tag '%ci:no-build' was applied to HEAD commit message."
exit 0
fi
for repo_path in $(jq --raw-output 'del(.pkg_format) | keys | .[]' repo.json); do
repo=$(jq --raw-output '.["'${repo_path}'"].name' repo.json)
# Parse changed files and identify new packages and deleted packages.
# Create lists of those packages that will be passed to upload job for
# further processing.
while read -r file; do
if ! [[ $file == ${repo_path}/* ]]; then
# This file does not belong to a package, so ignore it
continue
fi
if [[ $file =~ ^${repo_path}/([.a-z0-9+-]*)/([.a-z0-9+-]*).subpackage.sh$ ]]; then
# A subpackage was modified, check if it was deleted or just updated
pkg=${BASH_REMATCH[1]}
subpkg=${BASH_REMATCH[2]}
if [ ! -f "${repo_path}/${pkg}/${subpkg}.subpackage.sh" ]; then
echo "$subpkg" >> ./deleted_${repo}_packages.txt
fi
elif [[ $file =~ ^${repo_path}/([.a-z0-9+-]*)/.*$ ]]; then
# package, check if it was deleted or updated
pkg=${BASH_REMATCH[1]}
if [ -d "${repo_path}/${pkg}" ]; then
echo "$pkg" >> ./built_${repo}_packages.txt
# If there are subpackages we want to create a list of those
# as well
for file in $(find "${repo_path}/${pkg}/" -maxdepth 1 -type f -name \*.subpackage.sh | sort); do
echo "$(basename "${file%%.subpackage.sh}")" >> ./built_${repo}_subpackages.txt
done
else
echo "$pkg" >> ./deleted_${repo}_packages
fi
fi
done<<<${CHANGED_FILES}
done
else
# Ensure MANUAL_INPUT_PACKAGES is newline free, and put it
# into an array
read -a PACKAGES <<< "${MANUAL_INPUT_PACKAGES//$'\n'/ }"
for pkg in "${PACKAGES[@]}"; do
repo_paths=$(jq --raw-output 'del(.pkg_format) | keys | .[]' repo.json)
found=false
for repo_path in $repo_paths; do
repo=$(jq --raw-output '.["'${repo_path}'"].name' repo.json)
if [ -d "${repo_path}/${pkg}" ]; then
found=true
echo "$pkg" >> ./built_${repo}_packages.txt
for subpkg in $(find "${repo_path}/${pkg}/" -maxdepth 1 -type f -name \*.subpackage.sh | sort); do
echo "$(basename "${subpkg%%.subpackage.sh}")" >> ./built_${repo}_subpackages.txt
done
fi
done
if [ "$found" != true ]; then
echo "Package '${pkg}' not found in any of the repo"
exit 1
fi
done
fi
for repo in $(jq --raw-output 'del(.pkg_format) | .[].name' repo.json); do
# Fix so that lists do not contain duplicates
if [ -f ./built_${repo}_packages.txt ]; then
sort ./built_${repo}_packages.txt | uniq > ./built_${repo}_packages.txt.tmp
mv ./built_${repo}_packages.txt.tmp ./built_${repo}_packages.txt
fi
if [ -f ./built_${repo}_subpackages.txt ]; then
sort ./built_${repo}_subpackages.txt | uniq > ./built_${repo}_subpackages.txt.tmp
mv ./built_${repo}_subpackages.txt.tmp ./built_${repo}_subpackages.txt
fi
if [ -f ./deleted_${repo}_packages.txt ]; then
sort ./deleted_${repo}_packages.txt | uniq > ./deleted_${repo}_packages.txt.tmp
mv ./deleted_${repo}_packages.txt.tmp ./deleted_${repo}_packages.txt
fi
done
declare -a packages=()
for repo_path in $(jq --raw-output 'del(.pkg_format) | keys | .[]' repo.json); do
repo=$(jq --raw-output '.["'${repo_path}'"].name' repo.json)
if [ -f "./built_${repo}_packages.txt" ]; then
packages+=($(cat "./built_${repo}_packages.txt"))
fi
done
echo "packages: ${packages[*]}"
free_space='false'
if [ "${{ github.event_name }}" == "workflow_dispatch" ]; then
free_space=${{ github.event.inputs.free-space }}
else
if grep -qiP '^\s*%ci:free-disk\s*$' <(git log --format="%B" -n 1 --no-merges "HEAD"); then
free_space=true
fi
fi
if [[ "${#packages[@]}" -gt 0 ]]; then
for pkg in "${packages[@]}"; do
if grep -qFx "$pkg" ./scripts/big-pkgs.list; then
free_space='true'
break
fi
done
fi
echo "free-space=$free_space" >> $GITHUB_OUTPUT
needs_docker_build=false
if [ "${{ github.event_name }}" != "workflow_dispatch" ]; then
# Build local Docker image if setup scripts were changed.
# Useful for pull requests submitting changes for both build environment and packages.
if grep -qP '^scripts/(Dockerfile|properties\.sh|setup-android-sdk\.sh|setup-ubuntu\.sh)$' <<< "$CHANGED_FILES"; then
needs_docker_build=true
fi
fi
echo "needs-docker-build=$needs_docker_build" >> $GITHUB_OUTPUT
- name: Lint packages
run: |
declare -a package_recipes=()
for repo_path in $(jq --raw-output 'del(.pkg_format) | keys | .[]' repo.json); do
repo=$(jq --raw-output '.["'${repo_path}'"].name' repo.json)
if [ -f "./built_${repo}_packages.txt" ]; then
package_recipes+=($(cat "./built_${repo}_packages.txt" | repo_path="${repo_path}" awk '{print ENVIRON["repo_path"]"/"$1"/build.sh"}'))
fi
done
if [[ "${#package_recipes[@]}" -gt 0 ]]; then
./scripts/lint-packages.sh "${package_recipes[@]}"
fi
- name: Enable zram
if: ${{ steps.build-info.outputs.skip-building != 'true' }}
uses: ./.github/actions/zram
with:
algorithm: zstd
size: 16G
priority: 100
device_name: /dev/zram0
- name: Build docker image
if: ${{ steps.build-info.outputs.needs-docker-build == 'true' }}
run: |
docker build -t ghcr.io/termux/package-builder:latest scripts/
docker buildx prune -af
- name: Load Docker image
if: ${{ steps.build-info.outputs.free-space == 'true' && steps.build-info.outputs.skip-building != 'true' }}
run: |
./scripts/run-docker.sh true
- name: Free additional disk space (if needed)
if: ${{ steps.build-info.outputs.free-space == 'true' && steps.build-info.outputs.skip-building != 'true' }}
run: |
./scripts/free-space.sh
- name: Build packages
if: ${{ steps.build-info.outputs.skip-building != 'true' }}
run: |
declare -a packages=()
for repo_path in $(jq --raw-output 'del(.pkg_format) | keys | .[]' repo.json); do
repo=$(jq --raw-output '.["'${repo_path}'"].name' repo.json)
if [ -f "./built_${repo}_packages.txt" ]; then
packages+=($(cat "./built_${repo}_packages.txt"))
fi
done
echo "packages: ${packages[*]}"
if [[ "${#packages[@]}" -gt 0 ]]; then
./scripts/run-docker.sh -d ./build-package.sh -I -C -a "${{ matrix.target_arch }}" "${packages[@]}"
fi
- name: Generate build artifacts
if: always()
run: |
test -d termux-packages/output && mv termux-packages/output/* ./output/
for repo in $(jq --raw-output 'del(.pkg_format) | .[].name' repo.json); do
# Put package lists into directory with *.deb files so they will be transferred to
# upload job.
test -f ./built_${repo}_packages.txt && mv ./built_${repo}_packages.txt ./debs/
test -f ./built_${repo}_subpackages.txt && cat ./built_${repo}_subpackages.txt >> ./debs/built_${repo}_packages.txt \
&& rm ./built_${repo}_subpackages.txt
test -f ./deleted_${repo}_packages.txt && mv ./deleted_${repo}_packages.txt ./debs/
# Move only debs from built_packages into debs/ folder before
# creating an archive.
if [ -f "./debs/built_${repo}_packages.txt" ] && [ -d "output" ]; then
while read -r pkg; do
# Match both $pkg.deb and $pkg-static.deb.
find output \( -name "$pkg_*.deb" -o -name "$pkg-static_*.deb" \) -type f -print0 | xargs -0r mv -t debs/
done < <(cat "./debs/built_${repo}_packages.txt")
fi
done
# Files containing certain symbols (e.g. ":") will cause failure in actions/upload-artifact.
# Archiving *.deb files in a tarball to avoid issues with uploading.
tar cf artifacts/debs-${{ matrix.target_arch }}-${{ github.sha }}.tar debs
- name: Checksums for built *.deb files
if: always()
run: |
find debs -type f -name "*.deb" -exec sha256sum "{}" \; | sort -k2 | tee checksum-${{ matrix.target_arch }}-${{ github.sha }}.txt
- name: Store checksums for built *.deb files
if: always()
uses: actions/upload-artifact@v6
with:
name: checksum-${{ matrix.target_arch }}-${{ github.sha }}
path: checksum-${{ matrix.target_arch }}-${{ github.sha }}.txt
- name: Store *.deb files
if: always()
uses: actions/upload-artifact@v6
with:
name: debs-${{ matrix.target_arch }}-${{ github.sha }}
path: ./artifacts
- name: AppArmor Logs
if: always()
run: |
sudo dmesg | grep apparmor
test-buildorder-random:
permissions:
contents: read
runs-on: ubuntu-slim
steps:
- name: Clone repository
uses: actions/checkout@v6
- name: Randomise buildorder.py test
run: ./scripts/bin/test-buildorder-random
- name: Randomise buildorder.py test (aarch64)
env:
TERMUX_ARCH: aarch64
run: ./scripts/bin/test-buildorder-random
- name: Randomise buildorder.py test (arm)
env:
TERMUX_ARCH: arm
run: ./scripts/bin/test-buildorder-random
- name: Randomise buildorder.py test (i686)
env:
TERMUX_ARCH: i686
run: ./scripts/bin/test-buildorder-random
- name: Randomise buildorder.py test (x86_64)
env:
TERMUX_ARCH: x86_64
run: ./scripts/bin/test-buildorder-random
upload-test:
permissions:
contents: read
if: github.repository == 'termux/termux-packages' && github.ref != 'refs/heads/master'
needs: build
runs-on: ubuntu-slim
steps:
- name: Clone repository
uses: actions/checkout@v6
- name: Get *.deb files
uses: actions/download-artifact@v7
with:
path: ./
- name: Check packages using Packages.bz2
run: |
if [ "${{ github.event_name }}" != "workflow_dispatch" ]; then
# GitHub sometimes add merge commits at the end
# To prevent user confusion, filter them with --no-merges
# Process tag '%ci:no-build' that may be added as line to commit message.
# Forces CI to cancel current build with status 'passed'
if grep -qiP '^\s*%ci:no-build\s*$' <(git log --format="%B" -n 1 --no-merges "HEAD"); then
echo "[!] Force exiting as tag '%ci:no-build' was applied to HEAD commit message."
exit 0
fi
fi
for archive in debs-*/debs-{aarch64,arm,i686,x86_64}-${{ github.sha }}.tar; do
tar xf "$archive"
done
error=0
for repo in $(jq --raw-output 'del(.pkg_format) | keys | .[]' repo.json); do
name=$(jq --raw-output '.["'${repo}'"].name' repo.json)
distribution=$(jq --raw-output '.["'${repo}'"].distribution' repo.json)
component=$(jq --raw-output '.["'${repo}'"].component' repo.json)
url=$(jq --raw-output '.["'${repo}'"].url' repo.json)
if [ ! -f debs/built_${name}_packages.txt ]; then
continue
fi
if [ -z "$(cat debs/built_${name}_packages.txt)" ]; then
continue
fi
for arch in aarch64 arm i686 x86_64; do
if [ ! -f "Packages-${repo}-${arch}" ]; then
echo "[*] Downloading ${url}/dists/${distribution}/${component}/binary-${arch}/Packages.bz2"
curl -s \
--user-agent 'Termux-Packages/1.0\ (https://github.com/termux/termux-packages)' \
"${url}/dists/${distribution}/${component}/binary-${arch}/Packages.bz2" \
-o "Packages-${repo}-${arch}.bz2"
7z x "Packages-${repo}-${arch}.bz2" > /dev/null
fi
result=$(find debs -maxdepth 1 -type f | cut -d"/" -f2 | xargs -P$(nproc) -i{} grep "^Filename:.*/{}$" -nH "Packages-${repo}-${arch}" || true)
if [ -n "$result" ]; then
echo "$result" | grep -E "${arch}|all" || true
error=1
fi
done
done
if [ "$error" != 0 ]; then
echo "[!] Found local files same name with server files!"
echo "[!] Please revbump package, rebase or tag commit with '%ci:no-build'"
exit 1
fi
upload:
concurrency: ${{ github.workflow }}
permissions:
contents: read
if: github.repository == 'termux/termux-packages' && github.ref == 'refs/heads/master'
needs: build
runs-on: ubuntu-slim
steps:
- name: Clone repository
uses: actions/checkout@v6
- name: Get *.deb files
uses: actions/download-artifact@v7
with:
path: ./
- name: Upload to packages.termux.dev
env:
REPOSITORY_URL: https://packages.termux.dev/aptly-api
GITHUB_SHA: ${{ github.sha }}
APTLY_API_AUTH: ${{ secrets.APTLY_API_AUTH }}
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
run: |
source scripts/aptly_api.sh
for archive in debs-*/debs-{aarch64,arm,i686,x86_64}-${{ github.sha }}.tar; do
tar xf "$archive"
done
for repo in $(jq --raw-output 'del(.pkg_format) | keys | .[]' repo.json); do
export REPOSITORY_NAME=$(jq --raw-output '.["'$repo'"].name' repo.json)
export REPOSITORY_DISTRIBUTION=$(jq --raw-output '.["'$repo'"].distribution' repo.json)
# Upload file to temporary directory.
uploaded_files=false
shopt -s nullglob
if [ -f debs/built_${REPOSITORY_NAME}_packages.txt ]; then
for filename in $(cat debs/built_${REPOSITORY_NAME}_packages.txt | sed -E 's/(..*)/debs\/\1_\*.deb debs\/\1-static_\*.deb/g'); do
if ! aptly_upload_file "$filename"; then
exit 1
fi
uploaded_files=true
done
shopt -u nullglob
# Publishing repository changes.
if [ "$uploaded_files" = "true" ]; then
if ! aptly_add_to_repo; then
exit 1
fi
# Usually temporary directory is deleted automatically, but in certain cases it is left.
aptly_delete_dir
# Final part to make changes appear in web root.
if ! aptly_publish_repo; then
exit 1
fi
fi
fi
done