We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fcc556f commit ac7b5a1Copy full SHA for ac7b5a1
.github/workflows/build.yml
@@ -50,7 +50,7 @@ jobs:
50
runs-on: ubuntu-22.04
51
strategy:
52
matrix:
53
- target_machine: ["x64"]
+ target_machine: ["x64", "arm64"]
54
build_type: [Release, Debug]
55
fail-fast: false
56
steps:
script/prepare_linux.sh
@@ -7,7 +7,7 @@ add-apt-repository ppa:ubuntu-toolchain-r/test -y
7
apt-get update -y
8
apt-get install build-essential software-properties-common -y
9
apt-get update
10
-apt-get install gcc-10 g++-10 -y
+apt-get install gcc-10 g++-10 gcc-10-aarch64-linux-gnu g++-10-aarch64-linux-gnu -y
11
update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-10 60 --slave /usr/bin/g++ g++ /usr/bin/g++-10
12
update-alternatives --config gcc
13
0 commit comments