Skip to content
This repository was archived by the owner on Feb 15, 2024. It is now read-only.

Commit d58a743

Browse files
committed
bump LLVM to match monorepo
1 parent 000c6c7 commit d58a743

File tree

2 files changed

+15
-11
lines changed

2 files changed

+15
-11
lines changed

.github/workflows/push.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,12 @@ jobs:
5858
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0
5959

6060
# On macOS, we need a proper Clang version, not Apple's custom version without wasm32 support
61-
- name: Install LLVM and Clang
62-
uses: KyleMayes/install-llvm-action@8852e4d5c58653ed05135c0a5d949d9c2febcb00 # v1.6.1
61+
- name: Install LLVM and Clang for macOS
62+
uses: KyleMayes/install-llvm-action@be40c5af3a4adc3e4a03199995ab73aa37536712 # v1.9.0
6363
with:
64-
version: "15.0"
64+
# TODO: Switch to LLVM 17 on arm64 runners once https://github.com/KyleMayes/install-llvm-action/issues/61 is resolved
65+
version: 15.0.7
66+
if: runner.os == 'macOS'
6567

6668
- name: Install Protoc
6769
uses: arduino/setup-protoc@9b1ee5b22b0a3f1feb8c2ff99b32c89b3c3191e9 # v2.0.0
@@ -129,10 +131,11 @@ jobs:
129131
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0
130132

131133
# On macOS, we need a proper Clang version, not Apple's custom version without wasm32 support
132-
- name: Install LLVM and Clang
133-
uses: KyleMayes/install-llvm-action@8852e4d5c58653ed05135c0a5d949d9c2febcb00 # v1.6.1
134+
- name: Install LLVM and Clang for macOS
135+
uses: KyleMayes/install-llvm-action@be40c5af3a4adc3e4a03199995ab73aa37536712 # v1.9.0
134136
with:
135-
version: "15.0"
137+
# TODO: Switch to LLVM 17 on arm64 runners once https://github.com/KyleMayes/install-llvm-action/issues/61 is resolved
138+
version: 15.0.7
136139
if: runner.os == 'macOS'
137140

138141
- name: Install Protoc

.github/workflows/rustdoc.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ on:
55
branches:
66
- main
77
paths-ignore:
8-
- '**.md'
9-
- '.gitignore'
8+
- "**.md"
9+
- ".gitignore"
1010

1111
env:
1212
CARGO_INCREMENTAL: 0
@@ -21,10 +21,11 @@ jobs:
2121
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0
2222

2323
# On macOS, we need a proper Clang version, not Apple's custom version without wasm32 support
24-
- name: Install LLVM and Clang
25-
uses: KyleMayes/install-llvm-action@8852e4d5c58653ed05135c0a5d949d9c2febcb00 # v1.6.1
24+
- name: Install LLVM and Clang for macOS
25+
uses: KyleMayes/install-llvm-action@be40c5af3a4adc3e4a03199995ab73aa37536712 # v1.9.0
2626
with:
27-
version: "15.0"
27+
# TODO: Switch to LLVM 17 on arm64 runners once https://github.com/KyleMayes/install-llvm-action/issues/61 is resolved
28+
version: 15.0.7
2829

2930
- name: Install Protoc
3031
uses: arduino/setup-protoc@149f6c87b92550901b26acd1632e11c3662e381f # v1.3.0

0 commit comments

Comments
 (0)