Skip to content

Commit

Permalink
workflows: Use ubuntu-22.04 machines for linux Node v18 builds
Browse files Browse the repository at this point in the history
  • Loading branch information
fordN committed Jan 27, 2023
1 parent 8378f17 commit 005ab11
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,26 @@ jobs:
# (https://github.com/bchr02/node-pre-gyp-github/issues/42)
fail-fast: false
matrix:
node_version: [14, 16, 17, 18]
node_version: [14, 16, 17]
system:
- os: macos-latest
target: x86_64-apple-darwin
- os: ubuntu-18.04
target: x86_64-unknown-linux-gnu
include:
- node_version: 16
## 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
system:
os: ubuntu-22.04
target: x86_64-unknown-linux-gnu
- node_version: 18
system:
os: macos-latest
target: aarch64-apple-darwin
target: x86_64-apple-darwin
runs-on: ${{ matrix.system.os }}
steps:
- name: Checkout the repo
Expand Down

0 comments on commit 005ab11

Please sign in to comment.