Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,10 +99,16 @@ jobs:
choco install ninja cmake

- name: Install dependencies on ubuntu
if: startsWith(matrix.config.name, 'Ubuntu Latest GCC')
if: startsWith(matrix.config.name, 'Ubuntu GCC')
run: |
sudo apt-get update
sudo apt-get install ninja-build cmake libtbb-dev
sudo apt-get install ninja-build cmake libtbb-dev g++-aarch64-linux-gnu gcc-aarch64-linux-gnu g++-arm-linux-gnueabihf gcc-arm-linux-gnueabihf

which aarch64-linux-gnu-gcc
which aarch64-linux-gnu-g++

which arm-linux-gnueabihf-gcc
which arm-linux-gnueabihf-g++

- name: Install dependencies on macos
if: startsWith(matrix.config.os, 'macos')
Expand Down Expand Up @@ -151,7 +157,7 @@ jobs:
case "win":
return ["x64" /*, "arm64" */ ]; // disabled arm64 for now as compilation doesn't work
case "linux":
return ["x64", "arm64", "armv7l", "ppc64le"];
return ["x64", "arm64", "armv7l"];
case "mac":
return ["x64", "arm64"];
}
Expand Down
Loading