Fix
This commit is contained in:
parent
07593b9d65
commit
5f0cfcb7af
@ -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
|
||||||
|
13
scripts/install-dependencies-ARM64.sh
Executable file
13
scripts/install-dependencies-ARM64.sh
Executable 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
|
Loading…
x
Reference in New Issue
Block a user