fixing CI
Test / build_and_test (push) Failing after 48s
Build / build (push) Failing after 48s

This commit is contained in:
2026-07-07 01:59:31 +02:00
parent a7fce43f70
commit 9ed90a6e26
2 changed files with 26 additions and 4 deletions
+13 -2
View File
@@ -18,8 +18,19 @@ jobs:
- uses: https://codeberg.org/mlugg/setup-zig@v2
- name: Install MPSS
run: |
apt-get update
apt-get install -y unzip curl
curl -fsSL "https://drive.kbz8.me/dav/public-files/KSKeiOKxnFPyfws/mpss.zip" -o /tmp/mpss.zip
rm -rf /opt/mpss
unzip -q /tmp/mpss.zip -d /opt
chmod -R a+rX /opt/mpss
test -d /opt/mpss/3.8.6/sysroots/k1om-mpss-linux/bin
echo "/opt/mpss/3.8.6/sysroots/k1om-mpss-linux/bin" >> "$GITHUB_PATH"
- name: Building Ape
run: zig build ape --release=safe -Dphi-build-daemon=false
run: zig build ape --release=safe
- name: Building Soft
run: zig build soft --release=safe
@@ -28,7 +39,7 @@ jobs:
run: zig build flint --release=safe
- name: Building Phi
run: zig build phi --release=safe -Dphi-build-daemon=false
run: zig build phi --release=safe
- name: Generating docs
run: zig build docs
+13 -2
View File
@@ -15,8 +15,19 @@ jobs:
- uses: actions/checkout@v4
- uses: https://codeberg.org/mlugg/setup-zig@v2
- name: Install MPSS
run: |
apt-get update
apt-get install -y unzip curl
curl -fsSL "https://drive.kbz8.me/dav/public-files/KSKeiOKxnFPyfws/mpss.zip" -o /tmp/mpss.zip
rm -rf /opt/mpss
unzip -q /tmp/mpss.zip -d /opt
chmod -R a+rX /opt/mpss
test -d /opt/mpss/3.8.6/sysroots/k1om-mpss-linux/bin
echo "/opt/mpss/3.8.6/sysroots/k1om-mpss-linux/bin" >> "$GITHUB_PATH"
- name: Ape Tests
run: zig build test-ape --release=safe -Dphi-build-daemon=false
run: zig build test-ape --release=safe
- name: Soft Tests
run: zig build test-soft --release=safe
@@ -25,4 +36,4 @@ jobs:
run: zig build test-flint --release=safe
- name: Phi Tests
run: zig build test-phi --release=safe -Dphi-build-daemon=false
run: zig build test-phi --release=safe