Fix: Use apk for Alpine Linux in iOS build dependencies
Build Debug / Build Android Debug APK (push) Successful in 3m42s
Build UUVPN / Build Android APK (push) Failing after 2m59s
Build UUVPN / Build iOS IPA (push) Failing after 1s
Build UUVPN / Create GitHub Release (push) Has been skipped
Build UUVPN / Send Notification (push) Successful in 0s
Build Debug / Build iOS Debug App (push) Has been cancelled
Build Debug / Build Android Debug APK (push) Successful in 3m42s
Build UUVPN / Build Android APK (push) Failing after 2m59s
Build UUVPN / Build iOS IPA (push) Failing after 1s
Build UUVPN / Create GitHub Release (push) Has been skipped
Build UUVPN / Send Notification (push) Successful in 0s
Build Debug / Build iOS Debug App (push) Has been cancelled
This commit is contained in:
@@ -219,7 +219,11 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
apt-get update && apt-get install -y qemu-utils wget
|
if command -v apk &> /dev/null; then
|
||||||
|
apk add --no-cache qemu-utils wget git-lfs curl
|
||||||
|
else
|
||||||
|
apt-get update && apt-get install -y qemu-utils wget git-lfs curl
|
||||||
|
fi
|
||||||
|
|
||||||
- name: Check virtualization support
|
- name: Check virtualization support
|
||||||
run: |
|
run: |
|
||||||
@@ -244,7 +248,6 @@ jobs:
|
|||||||
|
|
||||||
- name: Setup Git LFS
|
- name: Setup Git LFS
|
||||||
run: |
|
run: |
|
||||||
apt-get update && apt-get install -y git-lfs
|
|
||||||
git lfs install
|
git lfs install
|
||||||
git config --global lfs.url "https://admin:${{ secrets.GITEA_TOKEN }}@git.viaeon.com/admin/UUVPN.git/info/lfs"
|
git config --global lfs.url "https://admin:${{ secrets.GITEA_TOKEN }}@git.viaeon.com/admin/UUVPN.git/info/lfs"
|
||||||
git lfs pull || echo "LFS pull failed - checking if framework exists"
|
git lfs pull || echo "LFS pull failed - checking if framework exists"
|
||||||
|
|||||||
Reference in New Issue
Block a user