From a7fb7184b979290e6a3a64d0ec92899d444685f4 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Thu, 12 May 2022 20:08:29 +0000 Subject: [PATCH] [Java] Fix PATH order to use upstream clang in OSX CI Thanks to @tnull for spotting this one. --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ac30e845..6b274534 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -359,8 +359,8 @@ jobs: git checkout 0.0.106 - name: Rebuild C bindings with upstream clang, and check the sample app builds + links run: | - cd ldk-c-bindings export PATH=`pwd`/clang+llvm-14.0.1-x86_64-apple-darwin/bin:$PATH + cd ldk-c-bindings CC=clang ./genbindings.sh ../rust-lightning true cd .. - name: Fetch OpenJDK 16 -- 2.30.2