Skip to content

Commit 2e1f557

Browse files
authored
build: use Clang to build canary updates (#293)
Let's be closer to what V8 supports.
1 parent e82d577 commit 2e1f557

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/update-canary.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,15 @@ on:
55
- cron: '0 6 * * *'
66
workflow_dispatch:
77

8+
env:
9+
CC: clang
10+
CXX: clang++
11+
812
jobs:
913
updateCanary:
1014
name: Update the canary branch
1115
if: github.repository == 'nodejs/node-v8' || github.event_name == 'workflow_dispatch'
12-
runs-on: ubuntu-latest
16+
runs-on: ubuntu-24.04
1317
steps:
1418
- name: Clone node-v8
1519
uses: actions/checkout@v4

0 commit comments

Comments
 (0)