Skip to content

Commit

Permalink
Update GitHub workflows
Browse files Browse the repository at this point in the history
Some of these had hardcoded versions (e.g. v18)
  • Loading branch information
laverdet committed Jun 6, 2024
1 parent b1d9a29 commit 7c398de
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 31 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.x, 20.x, 22.x ]
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]
Expand All @@ -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
Expand Down
37 changes: 11 additions & 26 deletions .github/workflows/prebuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,51 +7,36 @@ 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
os: [ alpine-latest, ubuntu-latest, macos-latest, windows-latest ]
steps:
- uses: actions/checkout@v4
- name: Use Node.js 18.x
- name: Use nodejs LTS
uses: actions/setup-node@v4
with:
node-version: 18.x
node-version: lts
- 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
run: |
npm install --ignore-scripts
- name: Prebuild
run: |
npm run prebuild
- name: Upload
run: |
npx prebuild --upload ${{ secrets.UPLOAD_TOKEN }}
env:
MAKEFLAGS: -j4

prebuild-alpine:
runs-on: ubuntu-latest
container: node:18-alpine3.19
steps:
- uses: actions/checkout@v4
- name: install build deps
- name: Install build deps
if: matrix.os == 'alpine-latest'
run: |
apk add g++ make python3
- name: Build
- name: Dependencies
run: |
npm install --ignore-scripts
- name: Prebuild
- name: Build
run: |
npm run prebuild
npm run prebuild --target 18.0.0
npm run prebuild --target 20.0.0
npm run prebuild --target 22.0.0
- name: Upload
run: |
npx prebuild --upload ${{ secrets.UPLOAD_TOKEN }}
Expand Down

0 comments on commit 7c398de

Please sign in to comment.