From 8671481db499843c31d0c8a83cb9175a0f254470 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 | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a30a2c254..8b662b4ed 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -93,11 +93,9 @@ jobs: with: tool: xbuild@0.2.0 - - uses: dtolnay/rust-toolchain@master - with: - toolchain: ${{ matrix.toolchain }}${{ matrix.platform.host }} - targets: ${{ matrix.platform.target }} - components: clippy + - 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 @@ -111,7 +109,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: >