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

Commit 2c46815

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

File tree

2 files changed

+14
-12
lines changed

2 files changed

+14
-12
lines changed

.github/workflows/push.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,11 @@ 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
6566

6667
- name: Install Protoc
6768
uses: arduino/setup-protoc@9b1ee5b22b0a3f1feb8c2ff99b32c89b3c3191e9 # v2.0.0
@@ -129,11 +130,11 @@ jobs:
129130
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0
130131

131132
# 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
133+
- name: Install LLVM and Clang for macOS
134+
uses: KyleMayes/install-llvm-action@be40c5af3a4adc3e4a03199995ab73aa37536712 # v1.9.0
134135
with:
135-
version: "15.0"
136-
if: runner.os == 'macOS'
136+
# TODO: Switch to LLVM 17 on arm64 runners once https://github.com/KyleMayes/install-llvm-action/issues/61 is resolved
137+
version: 15.0.7
137138

138139
- name: Install Protoc
139140
uses: arduino/setup-protoc@9b1ee5b22b0a3f1feb8c2ff99b32c89b3c3191e9 # v2.0.0

.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)