Last change
on this file since 6fe77af was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
639 bytes
|
Line | |
---|
1 | name: Node.js Windows integration
|
---|
2 |
|
---|
3 | on: [push, pull_request]
|
---|
4 |
|
---|
5 | jobs:
|
---|
6 | build-windows:
|
---|
7 | runs-on: windows-latest
|
---|
8 | steps:
|
---|
9 | - name: Clone gyp-next
|
---|
10 | uses: actions/checkout@v2
|
---|
11 | with:
|
---|
12 | path: gyp-next
|
---|
13 | - name: Clone nodejs/node
|
---|
14 | uses: actions/checkout@v2
|
---|
15 | with:
|
---|
16 | repository: nodejs/node
|
---|
17 | path: node
|
---|
18 | - name: Install deps
|
---|
19 | run: choco install nasm
|
---|
20 | - name: Replace gyp in Node.js
|
---|
21 | run: |
|
---|
22 | rm -Recurse node/tools/gyp
|
---|
23 | cp -Recurse gyp-next node/tools/gyp
|
---|
24 | - name: Build Node.js
|
---|
25 | run: |
|
---|
26 | cd node
|
---|
27 | ./vcbuild.bat
|
---|
Note:
See
TracBrowser
for help on using the repository browser.