-
Notifications
You must be signed in to change notification settings - Fork 154
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Some of these had hardcoded versions (e.g. v18) Also reworks prebuild action to not require a 3x3 matrix.
- Loading branch information
Showing
3 changed files
with
29 additions
and
21 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,18 +4,19 @@ on: [push, pull_request] | |
|
||
jobs: | ||
build-and-test: | ||
name: ${{ matrix.os }} / Node ${{ matrix.node }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
node-version: [ 18.x, 20.x, 22.x ] | ||
os: [ ubuntu-latest, macos-latest, windows-latest ] | ||
node: [ 18, 20, 22 ] | ||
fail-fast: false | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
- name: Use Node.js ${{ matrix.node }} | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
node-version: ${{ matrix.node }} | ||
- name: Add msbuild to PATH | ||
if: matrix.os == 'windows-latest' | ||
uses: microsoft/[email protected] | ||
|
@@ -39,8 +40,9 @@ jobs: | |
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
node-version: [ 18, 20, 22 ] | ||
container: node:${{ matrix.node-version }}-alpine | ||
node: [ 18, 20, 22 ] | ||
fail-fast: false | ||
container: node:${{ matrix.node }}-alpine | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: install build deps | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,53 +7,61 @@ on: | |
|
||
jobs: | ||
prebuild: | ||
name: ${{ matrix.os }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
node-version: [ 18.x, 20.x, 22.x ] | ||
os: [ ubuntu-latest, macos-latest, windows-latest ] | ||
fail-fast: false | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Use Node.js 18.x | ||
- name: Use nodejs | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 18.x | ||
node-version: latest | ||
- name: Add msbuild to PATH | ||
if: matrix.os == 'windows-latest' | ||
uses: microsoft/[email protected] | ||
- name: Install node-gyp | ||
if: matrix.os == 'windows-latest' | ||
run: | | ||
npm install --global node-gyp@latest | ||
- name: Build | ||
- name: Dependencies | ||
run: | | ||
npm install --ignore-scripts | ||
- name: Prebuild | ||
- name: Build | ||
run: | | ||
npm run prebuild | ||
npx prebuild --target 18.0.0 | ||
npx prebuild --target 20.0.0 | ||
npx prebuild --target 22.0.0 | ||
- name: Upload | ||
run: | | ||
npx prebuild --upload ${{ secrets.UPLOAD_TOKEN }} | ||
npx prebuild --upload-all ${{ secrets.UPLOAD_TOKEN }} | ||
env: | ||
MAKEFLAGS: -j4 | ||
|
||
prebuild-alpine: | ||
name: alpine | ||
runs-on: ubuntu-latest | ||
container: node:18-alpine3.19 | ||
container: node:alpine | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: install build deps | ||
- name: Use nodejs | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: latest | ||
- name: Install build deps | ||
run: | | ||
apk add g++ make python3 | ||
- name: Build | ||
- name: Dependencies | ||
run: | | ||
npm install --ignore-scripts | ||
- name: Prebuild | ||
- name: Build | ||
run: | | ||
npm run prebuild | ||
npx prebuild --target 18.0.0 | ||
npx prebuild --target 20.0.0 | ||
npx prebuild --target 22.0.0 | ||
- name: Upload | ||
run: | | ||
npx prebuild --upload ${{ secrets.UPLOAD_TOKEN }} | ||
npx prebuild --upload-all ${{ secrets.UPLOAD_TOKEN }} | ||
env: | ||
MAKEFLAGS: -j4 |
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