Skip to content

Commit

Permalink
ci: add nodejs integration on macos/linux (#255)
Browse files Browse the repository at this point in the history
  • Loading branch information
legendecas committed May 30, 2024
1 parent bf43efb commit 42b5e15
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 32 deletions.
32 changes: 0 additions & 32 deletions .github/workflows/nodejs-windows.yml

This file was deleted.

53 changes: 53 additions & 0 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
name: Node.js integration
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:

jobs:
integration:
strategy:
fail-fast: false
matrix:
os: [macos-13, macos-latest, ubuntu-latest, windows-latest]
python: ["3.8", "3.10", "3.12"]

runs-on: ${{ matrix.os }}
steps:
- name: Clone gyp-next
uses: actions/checkout@v4
with:
path: gyp-next
- name: Clone nodejs/node
uses: actions/checkout@v4
with:
repository: nodejs/node
path: node
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
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'
run: |
cd node
./vcbuild.bat nobuild

0 comments on commit 42b5e15

Please sign in to comment.