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

This commit is contained in:
2026-07-07 02:07:49 +02:00
parent 9ed90a6e26
commit 54941a7702
2 changed files with 40 additions and 4 deletions
+20 -2
View File
@@ -20,14 +20,32 @@ jobs:
- name: Install MPSS
run: |
set -eux
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"
MPSS_BIN="/opt/mpss/3.8.6/sysroots/k1om-mpss-linux/bin"
test -d "$MPSS_BIN"
echo "$MPSS_BIN" >> "$GITHUB_PATH"
echo "MPSS installed at:"
ls -la /opt/mpss/3.8.6
echo "MPSS bin:"
ls -la "$MPSS_BIN" | head -50
- name: Check MPSS PATH
run: |
echo "$PATH"
ls -la /opt/mpss/3.8.6/sysroots/k1om-mpss-linux/bin | head -50
- name: Building Ape
run: zig build ape --release=safe
+20 -2
View File
@@ -17,14 +17,32 @@ jobs:
- name: Install MPSS
run: |
set -eux
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"
MPSS_BIN="/opt/mpss/3.8.6/sysroots/k1om-mpss-linux/bin"
test -d "$MPSS_BIN"
echo "$MPSS_BIN" >> "$GITHUB_PATH"
echo "MPSS installed at:"
ls -la /opt/mpss/3.8.6
echo "MPSS bin:"
ls -la "$MPSS_BIN" | head -50
- name: Check MPSS PATH
run: |
echo "$PATH"
ls -la /opt/mpss/3.8.6/sysroots/k1om-mpss-linux/bin | head -50
- name: Ape Tests
run: zig build test-ape --release=safe