Skip to content

Commit

Permalink
workflows: Add support for recent versions of node, add arm64 runner
Browse files Browse the repository at this point in the history
  • Loading branch information
fordN committed Nov 15, 2023
1 parent b50d881 commit 3c6b4a8
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,23 +15,25 @@ jobs:
# (https://github.com/bchr02/node-pre-gyp-github/issues/42)
fail-fast: false
matrix:
node_version: [14, 16, 17]
node_version: [18, 19, 20]
system:
- os: macos-latest
target: x86_64-apple-darwin
- os: ubuntu-18.04
- os: ubuntu-22.04
target: x86_64-unknown-linux-gnu
- os: macos-13-arm64
target: aarch64-apple-darwin
include:
## ARM64 builds are not working. No ARM64 GitHub Action runners available out of box. Need to nail down cross compile
# - node_version: 16
# system:
# os: macos-latest
# target: aarch64-apple-darwin
- node_version: 18
- node_version: 17
system:
os: ubuntu-22.04
os: ubuntu-18.04
target: x86_64-unknown-linux-gnu
- node_version: 18
- node_version: 17
system:
os: macos-latest
target: x86_64-apple-darwin
Expand Down

0 comments on commit 3c6b4a8

Please sign in to comment.