From 8bd3f456a1a194d0074307af1e00c4f73d7ed5b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Matos?= Date: Tue, 6 Feb 2024 18:30:12 +0000 Subject: [PATCH] Update llvm.yml to install AArch64 cross compilers --- .github/workflows/llvm.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/llvm.yml b/.github/workflows/llvm.yml index 87b31a680..966cc1692 100644 --- a/.github/workflows/llvm.yml +++ b/.github/workflows/llvm.yml @@ -27,6 +27,10 @@ jobs: - uses: actions/checkout@v4 - 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 shell: bash run: build/build.sh clone_llvm @@ -43,4 +47,4 @@ jobs: uses: actions/upload-artifact@v3 with: name: llvm - path: build/llvm/llvm-*-*.* \ No newline at end of file + path: build/llvm/llvm-*-*.*