-
Notifications
You must be signed in to change notification settings - Fork 100
62 lines (59 loc) · 1.8 KB
/
Copy pathnodejs.yml
File metadata and controls
62 lines (59 loc) · 1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
name: Node.js integration
on:
push:
pull_request:
workflow_dispatch:
permissions: {}
jobs:
nodejs-integration:
strategy:
fail-fast: false
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
python-version: ["3.10", "3.12", "3.14", "3.15"]
include:
- os: macos-26-intel # macOS on Intel
python-version: 3.x
- os: ubuntu-24.04-arm # Ubuntu on ARM
python-version: 3.x
- os: windows-11-arm # Windows on ARM
python-version: 3.x
- os: windows-2025-vs2026 # Windows with Visual Studio 2026
python-version: 3.x
runs-on: ${{ matrix.os }}
steps:
- name: Clone gyp-next
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
path: gyp-next
persist-credentials: false
- name: Clone nodejs/node
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
repository: nodejs/node
path: node
persist-credentials: false
- uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Replace gyp in Node.js
shell: bash
run: |
rm -rf node/tools/gyp
cp -r gyp-next node/tools/gyp
# macOS and Linux
- name: Run configure
if: runner.os != 'Windows'
run: |
cd node
./configure
# Windows
- name: Install deps
if: runner.os == 'Windows'
run: choco install nasm
- name: Run configure
if: runner.os == 'Windows' && matrix.python-version != '3.15'
run: |
cd node
./vcbuild.bat nobuild