We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e1f557 commit 5f7d7a4Copy full SHA for 5f7d7a4
1 file changed
.github/workflows/update-canary.yml
@@ -6,15 +6,19 @@ on:
6
workflow_dispatch:
7
8
env:
9
- CC: clang
10
- CXX: clang++
+ CC: clang-19
+ CXX: clang++-19
11
12
jobs:
13
updateCanary:
14
name: Update the canary branch
15
if: github.repository == 'nodejs/node-v8' || github.event_name == 'workflow_dispatch'
16
runs-on: ubuntu-24.04
17
steps:
18
+ - name: Install Clang 19
19
+ run: |
20
+ sudo apt-get update
21
+ sudo apt-get install -y clang-19
22
- name: Clone node-v8
23
uses: actions/checkout@v4
24
with:
0 commit comments