Skip to content

Commit fe78e0f

Browse files
committed
Update CI references to OSX clang 15.0.3
1 parent 3c53ad2 commit fe78e0f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,14 +70,14 @@ jobs:
7070
run: rustup target install aarch64-apple-darwin
7171
- name: Fetch upstream LLVM/clang snapshot
7272
run: |
73-
wget -O clang+llvm-12.0.0-x86_64-apple-darwin.tar.xz https://github.com/llvm/llvm-project/releases/download/llvmorg-12.0.0/clang+llvm-12.0.0-x86_64-apple-darwin.tar.xz
74-
if [ "$(shasum -a 256 clang+llvm-12.0.0-x86_64-apple-darwin.tar.xz | awk '{ print $1 }')" != "7bc2259bf75c003f644882460fc8e844ddb23b27236fe43a2787870a4cd8ab50" ]; then
73+
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
74+
if [ "$(shasum -a 256 clang+llvm-15.0.3-x86_64-apple-darwin.tar.xz | awk '{ print $1 }')" != "ac668586b2b3d068f1e43520a3ef0b1592e5dc3eff1a4a4b772e29803b428a69" ]; then
7575
echo "Bad hash"
7676
exit 1
7777
fi
7878
- name: Unpack upstream LLVM+clang and use it by default
7979
run: |
80-
tar xvvf clang+llvm-12.0.0-x86_64-apple-darwin.tar.xz
80+
tar xvvf clang+llvm-15.0.3-x86_64-apple-darwin.tar.xz
8181
- name: Checkout source code
8282
uses: actions/checkout@v2
8383
with:
@@ -93,5 +93,5 @@ jobs:
9393
run: ./genbindings.sh ./rust-lightning true
9494
- name: Rebuild bindings using upstream clang, and check the sample app builds + links
9595
run: |
96-
export PATH=`pwd`/clang+llvm-12.0.0-x86_64-apple-darwin/bin:$PATH
96+
export PATH=`pwd`/clang+llvm-15.0.3-x86_64-apple-darwin/bin:$PATH
9797
CC=clang ./genbindings.sh ./rust-lightning true

0 commit comments

Comments
 (0)