Browse Source

Update llvm.yml to install AArch64 cross compilers

pull/1829/head
João Matos 1 year ago committed by Joao Matos
parent
commit
8bd3f456a1
  1. 4
      .github/workflows/llvm.yml

4
.github/workflows/llvm.yml

@ -27,6 +27,10 @@ jobs:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: lukka/get-cmake@latest - uses: lukka/get-cmake@latest
- name: Install cross compilers
if: startsWith(matrix.config.os, 'ubuntu') && startsWith(matrix.config.platform, 'arm64')
run: sudo apt install -y g++-aarch64-linux-gnu gcc-aarch64-linux-gnu
- name: Clone LLVM - name: Clone LLVM
shell: bash shell: bash
run: build/build.sh clone_llvm run: build/build.sh clone_llvm

Loading…
Cancel
Save