Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add linux arm support for nodegit #6

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,10 @@ jobs:
name: "Linux Tests"
strategy:
matrix:
node: [14, 16, 18]
node: [18]
arch: [x86, arm64]
runs-on: ubuntu-latest
container: ubuntu:20.04
container: ubuntu:22.04
steps:
- name: Install Dependencies for Ubuntu
# git >= 2.18 required for actions/checkout git support
Expand Down Expand Up @@ -86,8 +87,9 @@ jobs:
name: "macOS Tests"
strategy:
matrix:
node: [14, 16, 18]
runs-on: macOS-10.15
node: [18]
os: [macos-12, macos-14]
runs-on: {{ matrix.os }}
# This is mostly the same as the Linux steps, waiting for anchor support
# https://github.com/actions/runner/issues/1182
steps:
Expand Down
Loading