mirror of
https://github.com/mileswolfallen2/gelectron.git
synced 2026-09-08 12:43:16 +00:00
89 lines
2.5 KiB
YAML
89 lines
2.5 KiB
YAML
name: Build native binaries
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- 'v*'
|
|
|
|
jobs:
|
|
build:
|
|
name: Build ${{ matrix.target }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
include:
|
|
- os: macos-latest
|
|
target: aarch64-apple-darwin
|
|
- os: macos-latest
|
|
target: x86_64-apple-darwin
|
|
- os: windows-latest
|
|
target: x86_64-pc-windows-msvc
|
|
- os: windows-latest
|
|
target: aarch64-pc-windows-msvc
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Rust
|
|
uses: dtolnay/rust-toolchain@stable
|
|
with:
|
|
targets: ${{ matrix.target }}
|
|
|
|
- name: Setup Node
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 20
|
|
registry-url: 'https://registry.npmjs.org'
|
|
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
|
|
- name: Build N-API addon for ${{ matrix.target }}
|
|
run: npx napi build --platform --release --target ${{ matrix.target }} --package gelectron-core
|
|
|
|
- name: Rename .node file with platform-specific name
|
|
shell: bash
|
|
run: |
|
|
case "${{ matrix.target }}" in
|
|
x86_64-apple-darwin) name="gelectron_core.darwin-x64.node" ;;
|
|
aarch64-apple-darwin) name="gelectron_core.darwin-arm64.node" ;;
|
|
x86_64-pc-windows-msvc) name="gelectron_core.win32-x64-msvc.node" ;;
|
|
aarch64-pc-windows-msvc) name="gelectron_core.win32-arm64-msvc.node" ;;
|
|
x86_64-unknown-linux-gnu) name="gelectron_core.linux-x64-gnu.node" ;;
|
|
aarch64-unknown-linux-gnu) name="gelectron_core.linux-arm64-gnu.node" ;;
|
|
esac
|
|
find crates/gelectron-core -name "*.node" -exec mv {} "$name" \;
|
|
ls -la *.node
|
|
|
|
- name: Upload .node artifact
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: bindings-${{ matrix.target }}
|
|
path: gelectron_core.*.node
|
|
|
|
release:
|
|
name: Attach binaries to GitHub Release
|
|
needs: build
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
|
|
steps:
|
|
- name: Download all binaries
|
|
uses: actions/download-artifact@v4
|
|
with:
|
|
path: artifacts
|
|
pattern: bindings-*
|
|
merge-multiple: true
|
|
|
|
- name: List binaries
|
|
run: ls -la artifacts/
|
|
|
|
- name: Upload binaries to GitHub Release
|
|
uses: softprops/action-gh-release@v2
|
|
with:
|
|
files: artifacts/*.node
|