Skip to content

Commit

Permalink
try
Browse files Browse the repository at this point in the history
  • Loading branch information
skallweitNV committed Oct 18, 2024
1 parent 152bc12 commit b9eb319
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ jobs:
- name: Setup Linux (aarch64 cross-compilation)
if: matrix.os == 'linux' && matrix.platform == 'aarch64'
run: |
sudo apt-get update && sudo apt-get install -y crossbuild-essential-arm64
sudo dpkg --add-architecture arm64
sudo apt-get update
sudo apt-get install -y crossbuild-essential-arm64 xorg-dev:arm64
echo "CC=aarch64-linux-gnu-gcc" >> "$GITHUB_ENV"
echo "CXX=aarch64-linux-gnu-g++" >> "$GITHUB_ENV"
Expand All @@ -49,7 +51,7 @@ jobs:
uses: lukka/get-cmake@latest

- name: Configure
run: cmake -S . -B build
run: cmake --preset default -S . -B build

- name: Build
run: cmake --build build -j 2

0 comments on commit b9eb319

Please sign in to comment.