From cbb4982630a9dfd88af6e5c289ed852ec6710ed9 Mon Sep 17 00:00:00 2001 From: John Nunley Date: Sun, 10 Sep 2023 13:48:22 -0700 Subject: [PATCH] Once more unto the breach! Signed-off-by: John Nunley --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 01d671b4f6..fc07806e32 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -92,6 +92,10 @@ jobs: with: tool: xbuild@0.2.0 + - name: Install LLVM tools for Android + if: contains(matrix.platform.target, 'android') + run: sudo apt-get install llvm lld lldb clang clang++ + - name: Check documentation run: cargo doc --no-deps $OPTIONS --document-private-items @@ -104,7 +108,7 @@ jobs: - name: Package crate for iOS if: contains(matrix.platform.target, 'ios') - run: x build -p xbuild-target --plaform ios --arch arm64 + run: x build -p xbuild-target --platform ios --arch arm64 - name: Build tests if: >