2020-01-22 01:25:35 +01:00
|
|
|
name: Packages
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
paths:
|
|
|
|
- 'packages/**'
|
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- 'packages/**'
|
2021-10-26 19:19:10 +02:00
|
|
|
workflow_dispatch:
|
|
|
|
inputs:
|
|
|
|
packages:
|
|
|
|
description: "A space-separated names of packages selected for rebuilding"
|
|
|
|
required: true
|
2020-01-22 01:25:35 +01:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2020-07-01 19:27:59 +02:00
|
|
|
runs-on: ubuntu-latest
|
2020-07-01 19:27:41 +02:00
|
|
|
env:
|
|
|
|
ANDROID_HOME: "/opt/termux/android-sdk"
|
|
|
|
NDK: "/opt/termux/android-ndk"
|
2020-01-22 01:25:35 +01:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
target_arch: [aarch64, arm, i686, x86_64]
|
2021-06-24 06:23:02 +02:00
|
|
|
fail-fast: false
|
2020-01-22 01:25:35 +01:00
|
|
|
steps:
|
|
|
|
- name: Clone repository
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
fetch-depth: 1000
|
|
|
|
- name: Build
|
|
|
|
run: |
|
2021-10-26 19:19:10 +02:00
|
|
|
if [ "${{ github.event_name }}" != "workflow_dispatch" ]; then
|
|
|
|
BASE_COMMIT=$(jq --raw-output .pull_request.base.sha "$GITHUB_EVENT_PATH")
|
|
|
|
OLD_COMMIT=$(jq --raw-output .commits[0].id "$GITHUB_EVENT_PATH")
|
|
|
|
HEAD_COMMIT=$(jq --raw-output .commits[-1].id "$GITHUB_EVENT_PATH")
|
|
|
|
if [ "$BASE_COMMIT" = "null" ]; then
|
|
|
|
if [ "$OLD_COMMIT" = "$HEAD_COMMIT" ]; then
|
|
|
|
# Single-commit push.
|
|
|
|
echo "Processing commit: ${HEAD_COMMIT}"
|
|
|
|
CHANGED_FILES=$(git diff-tree --no-commit-id --name-only -r "${HEAD_COMMIT}")
|
|
|
|
else
|
|
|
|
# Multi-commit push.
|
|
|
|
OLD_COMMIT="${OLD_COMMIT}~1"
|
|
|
|
echo "Processing commit range: ${OLD_COMMIT}..${HEAD_COMMIT}"
|
|
|
|
CHANGED_FILES=$(git diff-tree --no-commit-id --name-only -r "${OLD_COMMIT}" "${HEAD_COMMIT}")
|
|
|
|
fi
|
2020-01-22 01:25:35 +01:00
|
|
|
else
|
2021-10-26 19:19:10 +02:00
|
|
|
# Pull requests.
|
|
|
|
echo "Processing pull request #$(jq --raw-output .pull_request.number "$GITHUB_EVENT_PATH"): ${BASE_COMMIT}..HEAD"
|
|
|
|
CHANGED_FILES=$(git diff-tree --no-commit-id --name-only -r "${BASE_COMMIT}" "HEAD")
|
2020-01-22 01:25:35 +01:00
|
|
|
fi
|
|
|
|
fi
|
2020-02-17 12:33:59 +01:00
|
|
|
mkdir -p ./artifacts ./debs
|
2020-06-02 19:25:36 +02:00
|
|
|
touch ./debs/.placeholder
|
2021-10-26 19:19:10 +02:00
|
|
|
if [ "${{ github.event_name }}" != "workflow_dispatch" ]; then
|
|
|
|
# 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 "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
|
2020-01-22 01:25:35 +01:00
|
|
|
fi
|
2021-10-26 19:19:10 +02:00
|
|
|
# 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|setup-ubuntu\.sh)$' <<< "$CHANGED_FILES"; then
|
|
|
|
echo "Detected changes for environment setup scripts. Building custom Docker image now."
|
|
|
|
cd ./scripts
|
|
|
|
docker build -t termux/package-builder:latest .
|
|
|
|
cd ..
|
|
|
|
fi
|
|
|
|
# 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 == packages/* ]]; then
|
|
|
|
# This file does not belong to a package, so ignore it
|
|
|
|
continue
|
2021-03-01 08:52:25 +01:00
|
|
|
fi
|
2021-12-20 16:21:55 +01:00
|
|
|
if [[ $file =~ ^packages/([.a-z0-9+-]*)/([.a-z0-9+-]*).subpackage.sh$ ]]; then
|
2021-10-26 19:19:10 +02:00
|
|
|
# A subpackage was modified, check if it was deleted or just updated
|
|
|
|
pkg=${BASH_REMATCH[1]}
|
|
|
|
subpkg=${BASH_REMATCH[2]}
|
|
|
|
if [ ! -f "packages/${pkg}/${subpkg}.subpackage.sh" ]; then
|
|
|
|
echo "$subpkg" >> ./deleted_packages.txt
|
|
|
|
fi
|
2021-12-20 16:21:55 +01:00
|
|
|
elif [[ $file =~ ^packages/([.a-z0-9+-]*)/.*$ ]]; then
|
2021-10-26 19:19:10 +02:00
|
|
|
# package, check if it was deleted or updated
|
|
|
|
pkg=${BASH_REMATCH[1]}
|
|
|
|
if [ ! -d "packages/${pkg}" ]; then
|
|
|
|
echo "$pkg" >> ./deleted_packages.txt
|
|
|
|
else
|
|
|
|
echo "$pkg" >> ./built_packages.txt
|
|
|
|
# If there are subpackages we want to create a list of those
|
|
|
|
# as well
|
|
|
|
for file in $(find "packages/${pkg}/" -maxdepth 1 -type f -name \*.subpackage.sh | sort); do
|
|
|
|
echo "$(basename "${file%%.subpackage.sh}")" >> ./built_subpackages.txt
|
|
|
|
done
|
|
|
|
fi
|
2021-03-01 08:52:25 +01:00
|
|
|
fi
|
2021-10-26 19:19:10 +02:00
|
|
|
done<<<${CHANGED_FILES}
|
|
|
|
else
|
2021-11-04 15:07:46 +01:00
|
|
|
for pkg in ${{ github.event.inputs.packages }}; do
|
|
|
|
echo "$pkg" >> ./built_packages.txt
|
|
|
|
for subpkg in $(find "packages/${pkg}/" -maxdepth 1 -type f -name \*.subpackage.sh | sort); do
|
2021-11-04 15:28:06 +01:00
|
|
|
echo "$(basename "${subpkg%%.subpackage.sh}")" >> ./built_subpackages.txt
|
2021-11-04 15:07:46 +01:00
|
|
|
done
|
2021-10-26 19:19:10 +02:00
|
|
|
done
|
|
|
|
fi
|
2021-03-01 08:52:25 +01:00
|
|
|
|
|
|
|
# Fix so that lists do not contain duplicates
|
|
|
|
if [ -f ./built_packages.txt ]; then
|
|
|
|
uniq ./built_packages.txt > ./built_packages.txt.tmp
|
|
|
|
mv ./built_packages.txt.tmp ./built_packages.txt
|
|
|
|
fi
|
|
|
|
if [ -f ./built_subpackages.txt ]; then
|
|
|
|
uniq ./built_subpackages.txt > ./built_subpackages.txt.tmp
|
|
|
|
mv ./built_subpackages.txt.tmp ./built_subpackages.txt
|
|
|
|
fi
|
|
|
|
if [ -f ./deleted_packages.txt ]; then
|
|
|
|
uniq ./deleted_packages.txt > ./deleted_packages.txt.tmp
|
|
|
|
mv ./deleted_packages.txt.tmp ./deleted_packages.txt
|
2020-01-25 15:39:24 +01:00
|
|
|
fi
|
2021-03-01 08:52:25 +01:00
|
|
|
|
2021-06-27 23:10:07 +02:00
|
|
|
if grep -qP '^rust$' ./built_packages.txt ; then
|
|
|
|
echo "Free additional disk space on host"
|
|
|
|
sudo apt purge -yq $(dpkg -l | grep '^ii' | awk '{ print $2 }' | grep -P '(cabal-|dotnet-|ghc-|libmono|php)') \
|
|
|
|
liblldb-6.0 libllvm6.0:amd64 mono-runtime-common monodoc-manual powershell ruby
|
|
|
|
sudo apt autoremove -yq
|
|
|
|
sudo rm -rf /opt/hostedtoolcache /usr/local /usr/share/dotnet /usr/share/swift
|
|
|
|
fi
|
|
|
|
|
2021-03-01 08:52:25 +01:00
|
|
|
if [ -f ./built_packages.txt ]; then
|
|
|
|
./scripts/lint-packages.sh $(cat ./built_packages.txt | awk '{print "packages/"$1"/build.sh"}')
|
2022-01-30 16:06:09 +01:00
|
|
|
./scripts/run-docker.sh ./build-package.sh -I -a ${{ matrix.target_arch }} $(cat ./built_packages.txt)
|
2021-03-01 08:52:25 +01:00
|
|
|
fi
|
|
|
|
|
2022-01-30 16:06:09 +01:00
|
|
|
mkdir -p debs
|
|
|
|
test -d termux-packages/output && mv termux-packages/output/* ./output/
|
|
|
|
|
2020-01-25 15:39:24 +01:00
|
|
|
# Put package lists into directory with *.deb files so they will be transferred to
|
|
|
|
# upload job.
|
|
|
|
test -f ./built_packages.txt && mv ./built_packages.txt ./debs/
|
2021-03-01 08:52:25 +01:00
|
|
|
test -f ./built_subpackages.txt && cat ./built_subpackages.txt >> ./debs/built_packages.txt \
|
|
|
|
&& rm ./built_subpackages.txt
|
2020-01-25 15:39:24 +01:00
|
|
|
test -f ./deleted_packages.txt && mv ./deleted_packages.txt ./debs/
|
2022-01-30 16:06:09 +01:00
|
|
|
|
|
|
|
# Move only debs from built_packages into debs/ folder before
|
|
|
|
# creating an archive.
|
|
|
|
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_packages.txt)
|
|
|
|
|
2020-01-25 15:39:24 +01:00
|
|
|
# Files containing certain symbols (e.g. ":") will cause failure in actions/upload-artifact.
|
|
|
|
# Archiving *.deb files in a tarball to avoid issues with uploading.
|
2021-02-25 13:05:07 +01:00
|
|
|
tar cf artifacts/debs-${{ matrix.target_arch }}-${{ github.sha }}.tar debs
|
2020-03-12 18:02:16 +01:00
|
|
|
- name: Checksums for built *.deb files
|
|
|
|
run: |
|
|
|
|
find debs -type f -name "*.deb" -exec sha256sum "{}" \; | sort -k2
|
2020-01-22 01:25:35 +01:00
|
|
|
- name: Store *.deb files
|
2021-02-14 16:34:26 +01:00
|
|
|
uses: actions/upload-artifact@v2
|
2020-01-22 01:25:35 +01:00
|
|
|
with:
|
2021-09-20 17:59:32 +02:00
|
|
|
name: termux-packages-${{ matrix.target_arch }}-${{ github.sha }}
|
2020-01-23 21:39:46 +01:00
|
|
|
path: ./artifacts
|
2021-09-20 17:59:32 +02:00
|
|
|
|
2020-01-22 01:25:35 +01:00
|
|
|
upload:
|
|
|
|
if: github.event_name != 'pull_request'
|
|
|
|
needs: build
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Clone repository
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Get *.deb files
|
2021-02-14 16:34:26 +01:00
|
|
|
uses: actions/download-artifact@v2
|
2020-01-22 01:25:35 +01:00
|
|
|
with:
|
2020-01-22 23:05:16 +01:00
|
|
|
path: ./
|
2021-06-02 23:16:03 +02:00
|
|
|
- name: Upload to packages.termux.org
|
|
|
|
env:
|
|
|
|
REPOSITORY_NAME: termux-main
|
|
|
|
REPOSITORY_DISTRIBUTION: stable
|
|
|
|
run: |
|
2021-09-21 08:46:23 +02:00
|
|
|
for archive in termux-packages-*/*.tar; do
|
2021-06-02 23:16:03 +02:00
|
|
|
tar xf "$archive"
|
|
|
|
done
|
2021-06-03 15:54:54 +02:00
|
|
|
|
2021-06-03 16:38:57 +02:00
|
|
|
# Function for deleting temporary directory with uploaded files from
|
|
|
|
# the server.
|
|
|
|
aptly_delete_dir() {
|
2021-10-07 14:02:11 +02:00
|
|
|
echo "[$(date +%H:%M:%S)] Deleting uploads temporary directory..."
|
2021-06-03 16:38:57 +02:00
|
|
|
|
|
|
|
curl_response=$(
|
|
|
|
curl \
|
|
|
|
--silent \
|
2021-10-08 22:48:58 +02:00
|
|
|
--retry 2 \
|
|
|
|
--retry-delay 3 \
|
2021-06-03 16:38:57 +02:00
|
|
|
--user "${{ secrets.APTLY_API_AUTH }}" \
|
2021-10-08 13:05:25 +02:00
|
|
|
--user-agent "Termux-Packages/1.0 (https://github.com/termux/termux-packages)" \
|
2021-06-03 16:38:57 +02:00
|
|
|
--request DELETE \
|
|
|
|
--write-out "|%{http_code}" \
|
|
|
|
https://packages.termux.org/aptly-api/files/${REPOSITORY_NAME}-${{ github.sha }}
|
|
|
|
)
|
|
|
|
|
2021-12-26 21:40:10 +01:00
|
|
|
http_status_code=$(echo "$curl_response" | cut -d'|' -f2 | grep -oP '\d{3}$')
|
2021-06-03 16:38:57 +02:00
|
|
|
|
|
|
|
if [ "$http_status_code" != "200" ]; then
|
2021-10-07 14:02:11 +02:00
|
|
|
echo "[$(date +%H:%M:%S)] Warning: server returned $http_status_code code while deleting temporary directory."
|
2021-06-03 16:38:57 +02:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2021-06-03 15:54:54 +02:00
|
|
|
# Upload file to temporary directory.
|
2021-06-02 23:16:03 +02:00
|
|
|
uploaded_files=false
|
2021-06-04 16:07:41 +02:00
|
|
|
shopt -s nullglob
|
|
|
|
for filename in $(cat debs/built_packages.txt | sed -E 's/(..*)/debs\/\1_\*.deb debs\/\1-static_\*.deb/g'); do
|
2021-06-03 15:54:54 +02:00
|
|
|
curl_response=$(
|
|
|
|
curl \
|
|
|
|
--silent \
|
2021-10-08 22:48:58 +02:00
|
|
|
--retry 2 \
|
|
|
|
--retry-delay 3 \
|
2021-06-03 15:54:54 +02:00
|
|
|
--user "${{ secrets.APTLY_API_AUTH }}" \
|
2021-10-08 13:05:25 +02:00
|
|
|
--user-agent "Termux-Packages/1.0 (https://github.com/termux/termux-packages)" \
|
2021-06-03 15:54:54 +02:00
|
|
|
--request POST \
|
|
|
|
--form file=@${filename} \
|
|
|
|
--write-out "|%{http_code}" \
|
2021-10-07 14:35:34 +02:00
|
|
|
https://packages.termux.org/aptly-api/files/${REPOSITORY_NAME}-${{ github.sha }} || true
|
2021-06-03 15:54:54 +02:00
|
|
|
)
|
|
|
|
|
2021-12-26 21:40:10 +01:00
|
|
|
http_status_code=$(echo "$curl_response" | cut -d'|' -f2 | grep -oP '\d{3}$')
|
2021-06-03 15:54:54 +02:00
|
|
|
|
|
|
|
if [ "$http_status_code" = "200" ]; then
|
2021-10-07 14:02:11 +02:00
|
|
|
echo "[$(date +%H:%M:%S)] Uploaded: $(echo "$curl_response" | cut -d'|' -f1 | jq -r '.[]' | cut -d'/' -f2)"
|
2021-10-07 14:08:36 +02:00
|
|
|
elif [ "$http_status_code" = "000" ]; then
|
|
|
|
echo "[$(date +%H:%M:%S)]: Failed to upload '$filename'. Server/proxy dropped connection during upload."
|
|
|
|
echo "[$(date +%H:%M:%S)]: Aborting any further uploads."
|
|
|
|
aptly_delete_dir
|
|
|
|
exit 1
|
2021-06-03 15:54:54 +02:00
|
|
|
else
|
|
|
|
# Manually cleaning up the temporary directory to reclaim disk space.
|
|
|
|
# Don't rely on scheduled server-side scripts.
|
2021-10-07 14:02:11 +02:00
|
|
|
echo "[$(date +%H:%M:%S)] Error: failed to upload '$filename'. Server returned $http_status_code code."
|
|
|
|
echo "[$(date +%H:%M:%S)] Aborting any further uploads."
|
2021-06-03 16:38:57 +02:00
|
|
|
aptly_delete_dir
|
2021-06-03 15:54:54 +02:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2021-06-02 23:16:03 +02:00
|
|
|
uploaded_files=true
|
|
|
|
done
|
2021-06-04 16:07:41 +02:00
|
|
|
shopt -u nullglob
|
2021-06-03 16:38:57 +02:00
|
|
|
|
2021-06-03 15:54:54 +02:00
|
|
|
# Publishing repository changes.
|
2021-06-02 23:16:03 +02:00
|
|
|
if [ "$uploaded_files" = "true" ]; then
|
2021-10-07 14:02:11 +02:00
|
|
|
echo "[$(date +%H:%M:%S)] Adding packages to repository '$REPOSITORY_NAME'..."
|
2021-10-07 13:49:01 +02:00
|
|
|
http_status_code=""
|
2021-10-08 22:48:58 +02:00
|
|
|
curl_response=$(
|
|
|
|
curl \
|
|
|
|
--silent \
|
|
|
|
--retry 2 \
|
|
|
|
--retry-delay 3 \
|
2022-01-15 12:04:03 +01:00
|
|
|
--max-time 300 \
|
2021-10-08 22:48:58 +02:00
|
|
|
--user "${{ secrets.APTLY_API_AUTH }}" \
|
|
|
|
--user-agent "Termux-Packages/1.0 (https://github.com/termux/termux-packages)" \
|
|
|
|
--request POST \
|
|
|
|
--write-out "|%{http_code}" \
|
|
|
|
https://packages-cf.termux.org/aptly-api/repos/${REPOSITORY_NAME}/file/${REPOSITORY_NAME}-${{ github.sha }} || true
|
|
|
|
)
|
2021-12-26 21:40:10 +01:00
|
|
|
http_status_code=$(echo "$curl_response" | cut -d'|' -f2 | grep -oP '\d{3}$')
|
2021-06-03 16:38:57 +02:00
|
|
|
|
|
|
|
if [ "$http_status_code" = "200" ]; then
|
|
|
|
warnings=$(echo "$curl_response" | cut -d'|' -f1 | jq '.Report.Warnings' | jq -r '.[]')
|
|
|
|
if [ -n "$warnings" ]; then
|
2021-10-07 14:02:11 +02:00
|
|
|
echo "[$(date +%H:%M:%S)] APTLY WARNINGS (NON-CRITICAL):"
|
2021-06-03 16:38:57 +02:00
|
|
|
echo
|
|
|
|
echo "$warnings"
|
|
|
|
echo
|
|
|
|
fi
|
2021-10-07 13:49:01 +02:00
|
|
|
else
|
2021-10-07 14:02:11 +02:00
|
|
|
echo "[$(date +%H:%M:%S)] Error: got http_status_code == '$http_status_code', packages may not appear in repository."
|
2021-06-03 16:38:57 +02:00
|
|
|
fi
|
2021-10-07 13:49:01 +02:00
|
|
|
|
2021-09-10 18:02:21 +02:00
|
|
|
# Usually temporary directory is deleted automatically, but in certain cases it is left.
|
|
|
|
aptly_delete_dir
|
2021-06-03 16:38:57 +02:00
|
|
|
|
|
|
|
# Final part to make changes appear in web root.
|
2021-10-07 14:02:11 +02:00
|
|
|
echo "[$(date +%H:%M:%S)] Publishing repository changes..."
|
2021-10-07 13:49:01 +02:00
|
|
|
http_status_code=""
|
2021-10-08 22:48:58 +02:00
|
|
|
curl_response=$(
|
|
|
|
curl \
|
|
|
|
--silent \
|
|
|
|
--retry 2 \
|
|
|
|
--retry-delay 3 \
|
2022-01-15 12:04:03 +01:00
|
|
|
--max-time 300 \
|
2021-10-08 22:48:58 +02:00
|
|
|
--user "${{ secrets.APTLY_API_AUTH }}" \
|
|
|
|
--user-agent "Termux-Packages/1.0 (https://github.com/termux/termux-packages)" \
|
|
|
|
--header 'Content-Type: application/json' \
|
|
|
|
--request PUT \
|
|
|
|
--data '{"Signing": {"Passphrase": "${{ secrets.GPG_PASSPHRASE }}"}}' \
|
|
|
|
--write-out '|%{http_code}' \
|
|
|
|
https://packages-cf.termux.org/aptly-api/publish/${REPOSITORY_NAME}/${REPOSITORY_DISTRIBUTION} || true
|
|
|
|
)
|
2021-12-05 11:00:46 +01:00
|
|
|
http_status_code=$(echo "$curl_response" | cut -d'|' -f2 | grep -oP '\d{3}$')
|
2021-10-07 13:49:01 +02:00
|
|
|
|
|
|
|
if [ "$http_status_code" = "200" ]; then
|
2021-10-07 14:02:11 +02:00
|
|
|
echo "[$(date +%H:%M:%S)] Repository has been updated successfully."
|
2021-10-07 13:49:01 +02:00
|
|
|
elif [ "$http_status_code" = "000" ]; then
|
2021-12-05 11:00:46 +01:00
|
|
|
echo "[$(date +%H:%M:%S)] Warning: server/proxy has dropped connection."
|
2021-10-07 15:43:29 +02:00
|
|
|
# Ignore - nothing can be done with that unless we change proxy.
|
|
|
|
#exit 1
|
2021-12-05 11:00:46 +01:00
|
|
|
elif [ "$http_status_code" = "504" ]; then
|
|
|
|
echo "[$(date +%H:%M:%S)] Warning: request processing time was too long, connection dropped."
|
|
|
|
# Ignore - nothing can be done with that unless we change repository
|
|
|
|
# management tool or reduce repository size.
|
|
|
|
#exit 1
|
2021-06-03 16:38:57 +02:00
|
|
|
else
|
2021-10-07 14:02:11 +02:00
|
|
|
echo "[$(date +%H:%M:%S)] Error: got http_status_code == '$http_status_code'"
|
2021-10-07 13:49:01 +02:00
|
|
|
exit 1
|
2021-06-03 16:38:57 +02:00
|
|
|
fi
|
2021-06-02 23:16:03 +02:00
|
|
|
fi
|