From: Matt Corallo Date: Sat, 14 Jan 2023 06:21:18 +0000 (+0000) Subject: Fix OSX CI to *actually* use upstream clang X-Git-Tag: v0.0.113.0^2~2 X-Git-Url: http://git.bitcoin.ninja/?a=commitdiff_plain;h=b6cbb5e84d954304dc26b04896c6d57518712002;p=ldk-java Fix OSX CI to *actually* use upstream clang --- 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