Skip to content

CI updates #1826

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

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
24 changes: 11 additions & 13 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,21 +19,25 @@ jobs:
fail-fast: false
matrix:
os:
- macos-latest
- ubuntu-20.04
- windows-latest
- macos-15
- ubuntu-24.04
- windows-2025
host:
- x64
target:
- x64
node:
- 18
include:
- os: windows-latest
- os: windows-2025
node: 18
host: x86
target: x86
- os: macos-m1
- os: macos-15
node: 18
host: arm64
target: arm64
- os: ubuntu-24.04-arm64
node: 18
host: arm64
target: arm64
Expand All @@ -45,12 +49,7 @@ jobs:
node-version: ${{ matrix.node }}
architecture: ${{ matrix.host }}

- name: Add yarn (self-hosted)
if: matrix.os == 'macos-m1'
run: npm install -g yarn

- name: Add setuptools for Python 3.12 (temp)
if: matrix.os != 'macos-m1'
run: pip install setuptools

- name: Add msbuild to PATH
Expand Down Expand Up @@ -101,7 +100,7 @@ jobs:
uses: actions/upload-artifact@v4
if: matrix.node == 18
with:
name: prebuilt-binaries
name: prebuilt-binaries-${{ matrix.os }}-${{ matrix.target }}
path: prebuilds/*
retention-days: 7

Expand All @@ -120,7 +119,6 @@ jobs:
target:
- linux/arm64
variant:
- bullseye
- alpine3.15
include:
# musl x64 builds
Expand Down Expand Up @@ -155,7 +153,7 @@ jobs:
uses: actions/upload-artifact@v4
if: matrix.node == 18
with:
name: prebuilt-binaries
name: prebuilt-binaries-${{ matrix.variant }}
path: prebuilds/*
retention-days: 7

Expand Down
Loading