add edge
Some checks failed
Release Alpine apk for ARM64v8 / compilation-arm64v8 (push) Failing after 57s
Some checks failed
Release Alpine apk for ARM64v8 / compilation-arm64v8 (push) Failing after 57s
This commit is contained in:
parent
ee5739cbbe
commit
b0b097f3cb
7 changed files with 130 additions and 12 deletions
56
.gitea/workflows/release_arm64v8-edge.yml
Executable file
56
.gitea/workflows/release_arm64v8-edge.yml
Executable file
|
|
@ -0,0 +1,56 @@
|
|||
name: "Release Alpine apk for ARM64v8"
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- release
|
||||
|
||||
jobs:
|
||||
compilation-arm64v8:
|
||||
runs-on: aarch-64-alpine-edge
|
||||
steps:
|
||||
- name: Select faster mirror and add tools
|
||||
shell: sh
|
||||
run: |
|
||||
echo "https://alpine.sakamoto.pl/alpine/$(cat /etc/os-release | grep PRETT | cut -d ' ' -f 3 | cut -d '"' -f 1)/main" > /etc/apk/repositories
|
||||
echo "https://alpine.sakamoto.pl/alpine/$(cat /etc/os-release | grep PRETT | cut -d ' ' -f 3 | cut -d '"' -f 1)/community" >> /etc/apk/repositories
|
||||
apk -U upgrade
|
||||
apk add bash git wget curl nodejs sshfs alpine-sdk abuild sudo shadow
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
- name: Set up environment and users
|
||||
run: |
|
||||
echo "user_allow_other" >> /etc/fuse.conf
|
||||
adduser runner -u 1003 -D -s /bin/bash -G wheel
|
||||
addgroup -g 1003 runner
|
||||
addgroup runner abuild
|
||||
addgroup runner runner
|
||||
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
|
||||
chsh -s /bin/bash
|
||||
su - runner -c 'mkdir ~/.abuild'
|
||||
echo "setup done"
|
||||
- name: Set up keys
|
||||
run: |
|
||||
wget -q https://static.itmodulo.eu/dl/repo/public_keys/alpine/itmodulo%40disroot.org-65b4f779.rsa.pub -P /etc/apk/keys
|
||||
su - runner -c 'wget -q https://static.itmodulo.eu/dl/repo/public_keys/alpine/itmodulo%40disroot.org-65b4f779.rsa.pub -P ~/.abuild/'
|
||||
echo "${{ secrets.REPO_PRIVKEY }}" > /home/runner/.abuild/${{ secrets.REPO_PRIVKEY_FILENAME }} && chown runner:runner /home/runner/.abuild/${{ secrets.REPO_PRIVKEY_FILENAME }}
|
||||
su - runner -c "echo 'PACKAGER_PRIVKEY="/home/runner/.abuild/${{ secrets.REPO_PRIVKEY_FILENAME }}"' >> ~/.abuild/abuild.conf"
|
||||
- name: Compile in sequence
|
||||
run: |
|
||||
ls srcpkgs | tr ' ' '\n'
|
||||
mv srcpkgs /home/runner && chown -R runner:runner /home/runner/srcpkgs
|
||||
echo "/home/runner/packages/srcpkgs" >> /etc/apk/repositories
|
||||
su - runner -c 'export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"; cd edge; for i in $(ls ./ ); do cd $i && abuild -r -c; cd .. ; done'
|
||||
- name: Mount and upload
|
||||
run: |
|
||||
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/edge/main/aarch64/'
|
||||
su - runner -c 'rm -rf hole/edge/main/aarch64/*'
|
||||
su - runner -c 'cp packages/srcpkgs/aarch64/* hole/edge/main/aarch64/'
|
||||
su - runner -c 'ls -lah /home/runner/hole/edge/main/aarch64/'
|
||||
Loading…
Add table
Add a link
Reference in a new issue