Skip to content

Commit

Permalink
DRAFT: Test on GitHub Actions windows-2025 image
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss committed Jan 7, 2025
1 parent ceb7426 commit 5efc459
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/node-gyp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,15 @@ jobs:
fail-fast: false
matrix:
node-version: ["22"]
os: [macos-13, macos-latest, ubuntu-latest, windows-latest]
os: [macos-latest, ubuntu-latest, windows-latest]
python-version: ["3.9", "3.11", "3.13"]
include:
- node-version: "22"
os: macos-13
python-version: "3.13"
- node-version: "22"
os: windows-2025
python-version: "3.13"
runs-on: ${{ matrix.os }}
steps:
- name: Clone gyp-next
Expand Down Expand Up @@ -47,7 +54,6 @@ jobs:
cp -r gyp-next node-gyp/gyp
- name: Run tests (macOS or Linux)
if: runner.os != 'Windows'
shell: bash
run: |
cd node-gyp
npm test --python="${pythonLocation}/python"
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,13 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [macos-13, macos-latest, ubuntu-latest, windows-latest]
os: [macos-latest, ubuntu-latest, windows-latest]
python: ["3.9", "3.11", "3.13"]
include:
- os: macos-13
python-version: "3.13"
- os: windows-2025
python-version: "3.13"

runs-on: ${{ matrix.os }}
steps:
Expand Down

0 comments on commit 5efc459

Please sign in to comment.