linux_alpine/.gitea/workflows/release_arm64v8.yml

71 lines
4.6 KiB
YAML
Raw Normal View History

2024-01-27 16:47:19 +01:00
name: 'Release Alpine apk for ARM64v8'
on:
push:
branches:
- release
jobs:
2024-01-27 19:34:09 +01:00
compilation-arm64v8:
2024-01-27 19:27:38 +01:00
runs-on: arm64v8-alpine-latest-pv
2024-01-27 16:47:19 +01:00
steps:
- name: Update environment
shell: sh
run: apk -U upgrade
- name: Install needed tools
shell: sh
2024-02-06 23:12:38 +01:00
run: apk add bash git wget curl nodejs sshfs alpine-sdk abuild sudo pup
2024-01-27 16:47:19 +01:00
- name: Checkout
uses: actions/checkout@v3
- name: Set up environment and users
2024-01-27 16:47:19 +01:00
run: |
echo "user_allow_other" >> /etc/fuse.conf
adduser runner -u 1001 -D -s /bin/bash -G wheel
2024-01-27 19:34:09 +01:00
addgroup -g 1001 runner
2024-01-27 16:47:19 +01:00
addgroup runner abuild
2024-01-27 19:34:09 +01:00
addgroup runner runner
2024-01-27 16:47:19 +01:00
chmod 660 /etc/sudoers
echo "%wheel ALL=(ALL:ALL) NOPASSWD: ALL" >> /etc/sudoers
chmod 440 /etc/sudoers
mkdir -p /var/cache/distfiles
chmod a+w /var/cache/distfiles
su - runner -c 'mkdir ~/.abuild'
echo "setup done"
- name: Set up keys
run: |
2024-01-27 20:02:04 +01:00
wget -q https://static.itmodulo.eu/dl/repo/public_keys/alpine/itmodulo%40disroot.org-65b4f779.rsa.pub -P /etc/apk/keys
2024-01-27 20:05:37 +01:00
su - runner -c 'wget -q https://static.itmodulo.eu/dl/repo/public_keys/alpine/itmodulo%40disroot.org-65b4f779.rsa.pub -P ~/.abuild/'
2024-01-27 19:56:32 +01:00
echo "${{ secrets.REPO_PRIVKEY }}" > /home/runner/.abuild/${{ secrets.REPO_PRIVKEY_FILENAME }} && chown runner:runner /home/runner/.abuild/${{ secrets.REPO_PRIVKEY_FILENAME }}
2024-01-27 20:02:04 +01:00
su - runner -c "echo 'PACKAGER_PRIVKEY="/home/runner/.abuild/${{ secrets.REPO_PRIVKEY_FILENAME }}"' >> ~/.abuild/abuild.conf"
2024-01-27 16:47:19 +01:00
mv srcpkgs /home/runner && chown -R runner:runner /home/runner/srcpkgs
2024-02-06 23:12:38 +01:00
- name: Determine packages to build
run: |
2024-02-21 01:31:34 +01:00
su - runner -c "curl --silent https://static.itmodulo.eu/dl/repo/alpine/latest-stable/main/aarch64/ | pup 'a text{}' | grep \.apk > /home/runner/repo.txt"
su - runner -c "touch /home/runner/local.txt"
su - runner -c 'for i in /home/runner/srcpkgs/* ; do printf "%s-%s-r%s.apk\n" "$(echo $i | cut -d '/' -f 5)" "$(cat $i/APKBUILD | grep pkgver | grep -v '\$' | cut -d '=' -f 2 )" "$(cat $i/APKBUILD | grep pkgrel | grep -v '\$' | cut -d '=' -f 2 )" >> /home/runner/local.txt; done'
su - runner -c 'echo "LOCAL:"; cat /home/runner/local.txt'
su - runner -c "grep -Fvxf /home/runner/repo.txt /home/runner/local.txt > /home/runner/missing.txt"
su - runner -c 'echo "MISSING:"; cat /home/runner/missing.txt'
su - runner -c "sed -i -E 's/-[0-9a-z.]+-r[0-9]+\.apk//g' /home/runner/missing.txt"
su - runner -c "for i in $(cat /home/runner/missing.txt); do sed -i -E 's/'"${i}"-[0-9a-z.]+-r[0-9]+\.apk'//g' /home/runner/repo.txt; done"
su - runner -c 'echo "REPO:"; cat /home/runner/repo.txt'
su - runner -c 'echo "WILL BUILD:"; cat /home/runner/missing.txt'
2024-02-06 23:12:38 +01:00
- name: Compile missing in sequence
run: |
su - runner -c 'export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"; cd "srcpkgs/$(head -n 1 missing.txt)"; abuild -r'
2024-01-31 02:45:17 +01:00
echo "/home/runner/packages/srcpkgs" >> /etc/apk/repositories
2024-02-06 23:12:38 +01:00
su - runner -c 'export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"; cd srcpkgs; for i in $(tail -n +2 missing.txt); do cd $i && abuild -r; cd .. ; done'
- name: Mount and upload
run: |
2024-01-27 16:47:19 +01:00
su - runner -c 'mkdir hole'
echo "${{ secrets.REPO_LOGIN }}" > /home/runner/id_ecdsa && chown runner:runner /home/runner/id_ecdsa && chmod 600 /home/runner/id_ecdsa
su - runner -c 'sshfs -p "${{ secrets.LOGIN_PORT }}" -o StrictHostKeyChecking=accept-new -o default_permissions,allow_other -o IdentityFile=/home/runner/id_ecdsa "${{ secrets.SERVER_LOGIN_AND_ADDRESS }}":"${{ secrets.SERVER_REPO_PATH }}" /home/runner/hole'
su - runner -c 'ls -lah /home/runner/hole/latest-stable/main/aarch64/'
2024-02-06 23:12:38 +01:00
su - runner -c 'mkdir toindex && mv ~/packages/srcpkgs/aarch64/*.apk ~/toindex/'
su - runner -c 'for i in $(cat repo.txt); do cp "hole/latest-stable/main/aarch64/$i" ~/toindex/'
su - runner -c 'apk index /home/runner/toindex/APKINDEX.tar.gz /home/runner/toindex/*.apk'
su - runner -c 'abuild-sign -k /home/runner/.abuild/${{ secrets.REPO_PRIVKEY_FILENAME }} /home/runner/toindex/APKINDEX.tar.gz'
2024-01-27 16:47:19 +01:00
su - runner -c 'rm -rf hole/latest-stable/main/aarch64/*'
2024-02-06 23:12:38 +01:00
su - runner -c 'cp toindex/* hole/latest-stable/main/aarch64/'
su - runner -c 'ls -lah /home/runner/hole/latest-stable/main/aarch64/'