Test update canary branch #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |