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

ci: support Windows ARM #693

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft
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
68 changes: 34 additions & 34 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
fail-fast: false
matrix:
os:
- ubuntu-20.04
# - ubuntu-20.04
- windows-2019
node_arch:
- x64
Expand All @@ -29,46 +29,46 @@ jobs:
- true

include:
- os: windows-2019
node_arch: ia32
cpp_arch: amd64_x86
native: true
# - os: windows-2019
# node_arch: ia32
# cpp_arch: amd64_x86
# native: true

# - os: windows-2022
# node_arch: x64
# arch: arm64
# cpp_arch: amd64_arm64

- os: macos-13
- os: windows-2022
node_arch: x64
cpp_arch: x64
native: true

- os: macos-14
node_arch: arm64
cpp_arch: amd64_arm64
native: true

# Musl Alpine
- os: ubuntu-24.04
dockerfile: docker/alpine.dockerfile
node_arch: x64
cpp_arch: x64
native: false
# - os: macos-13
# node_arch: x64
# cpp_arch: x64
# native: true

# Debian Arm
- os: ubuntu-24.04
node_arch: arm64
cpp_arch: amd64_arm64
distro: bookworm
native: false
# - os: macos-14
# node_arch: arm64
# cpp_arch: amd64_arm64
# native: true

# Musl Alpine Arm
- os: ubuntu-24.04
node_arch: arm64
cpp_arch: amd64_arm64
distro: alpine_latest
native: false
# # Musl Alpine
# - os: ubuntu-24.04
# dockerfile: docker/alpine.dockerfile
# node_arch: x64
# cpp_arch: x64
# native: false

# # Debian Arm
# - os: ubuntu-24.04
# node_arch: arm64
# cpp_arch: amd64_arm64
# distro: bookworm
# native: false

# # Musl Alpine Arm
# - os: ubuntu-24.04
# node_arch: arm64
# cpp_arch: amd64_arm64
# distro: alpine_latest
# native: false

env:
npm_config_arch: ${{ matrix.node_arch }}
Expand Down
Loading