Fix
Some checks failed
CI / Test (AMD64) (push) Successful in 2m7s
CI / Test (ARM64) (push) Failing after 5m2s

This commit is contained in:
TheBrokenRail 2025-02-15 00:26:16 -05:00
parent 07593b9d65
commit 5f0cfcb7af
3 changed files with 14 additions and 1 deletions

View File

@ -21,7 +21,7 @@ jobs:
uses: actions/checkout@v4 uses: actions/checkout@v4
# Dependencies # Dependencies
- name: Install Dependencies - name: Install Dependencies
run: ./scripts/install-dependencies.sh run: ./scripts/install-dependencies-${{ matrix.arch }}.sh
# Build # Build
- name: Build - name: Build
run: ./example/build.sh run: ./example/build.sh

View File

@ -0,0 +1,13 @@
#!/bin/sh
set -e
dpkg --add-architecture armhf
apt-get update
apt-get dist-upgrade -y
apt-get install -y --no-install-recommends \
cmake \
ninja-build \
gcc g++ \
gcc-arm-linux-gnueabihf g++-arm-linux-gnueabihf \
libc6:armhf