From b6cbb5e84d954304dc26b04896c6d57518712002 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Sat, 14 Jan 2023 06:21:18 +0000 Subject: [PATCH] Fix OSX CI to *actually* use upstream clang --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9ae476c3..72537f94 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -345,6 +345,10 @@ jobs: steps: - name: Install other Rust platforms run: rustup target install aarch64-apple-darwin + - name: Checkout source code + uses: actions/checkout@v2 + with: + fetch-depth: 0 - name: Fetch upstream LLVM/clang snapshot run: | wget -O clang+llvm-15.0.3-x86_64-apple-darwin.tar.xz https://github.com/llvm/llvm-project/releases/download/llvmorg-15.0.3/clang+llvm-15.0.3-x86_64-apple-darwin.tar.xz @@ -355,10 +359,6 @@ jobs: - name: Unpack upstream LLVM+clang and use it by default run: | tar xvvf clang+llvm-15.0.3-x86_64-apple-darwin.tar.xz - - name: Checkout source code - uses: actions/checkout@v2 - with: - fetch-depth: 0 - name: Install cbindgen run: cargo install cbindgen - name: Checkout Rust-Lightning and LDK-C-Bindings git -- 2.30.2