Skip to content

Test update canary branch #1

Test update canary branch

Test update canary branch #1

name: Test update canary branch
on:
workflow_dispatch:
jobs:
updateCanary:
strategy:
matrix:
gcc: [11, 12, 13]
fail-fast: false
name: Update the canary branch (GCC ${{ matrix.gcc }})
runs-on: ubuntu-latest
steps:
- name: Clone node-v8
uses: actions/checkout@v4
with:
path: node-v8
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install dependencies
run: npm install -g @node-core/utils
- name: Execute the update script
run: ./node-v8/tools/update-canary.sh
env:
CC: gcc-${{ matrix.gcc }}
CXX: g++-${{ matrix.gcc }}