Skip to content

Commit 5f7d7a4

Browse files
authored
build: use Clang 19 to build canary updates (#303)
1 parent 2e1f557 commit 5f7d7a4

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/update-canary.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,19 @@ on:
66
workflow_dispatch:
77

88
env:
9-
CC: clang
10-
CXX: clang++
9+
CC: clang-19
10+
CXX: clang++-19
1111

1212
jobs:
1313
updateCanary:
1414
name: Update the canary branch
1515
if: github.repository == 'nodejs/node-v8' || github.event_name == 'workflow_dispatch'
1616
runs-on: ubuntu-24.04
1717
steps:
18+
- name: Install Clang 19
19+
run: |
20+
sudo apt-get update
21+
sudo apt-get install -y clang-19
1822
- name: Clone node-v8
1923
uses: actions/checkout@v4
2024
with:

0 commit comments

Comments
 (0)