142 lines
4.2 KiB
YAML
142 lines
4.2 KiB
YAML
name: Zig-Cross-Compile
|
|
|
|
env:
|
|
DEBUG: 'napi:*'
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
|
|
jobs:
|
|
build:
|
|
name: Zig-Cross-Compile-On-Linux
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
target:
|
|
[
|
|
'x86_64-apple-darwin',
|
|
'x86_64-unknown-linux-musl',
|
|
'aarch64-unknown-linux-musl',
|
|
]
|
|
|
|
steps:
|
|
- run: docker run --rm --privileged multiarch/qemu-user-static:register --reset
|
|
- uses: actions/checkout@v3
|
|
- name: Setup node
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 18
|
|
cache: 'yarn'
|
|
- name: Install
|
|
uses: dtolnay/rust-toolchain@stable
|
|
with:
|
|
toolchain: stable
|
|
targets: ${{ matrix.target }}
|
|
- name: Cache cargo
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: |
|
|
~/.cargo/registry
|
|
~/.cargo/git
|
|
target
|
|
key: stable-zig-${{ matrix.target }}-cargo-cache
|
|
- name: Install aarch64 toolchain
|
|
run: rustup target add aarch64-unknown-linux-gnu
|
|
- name: Install ziglang
|
|
uses: goto-bus-stop/setup-zig@v2
|
|
with:
|
|
version: 0.10.1
|
|
- name: Install dependencies
|
|
run: yarn install --immutable --mode=skip-build
|
|
- name: install MacOS SDK
|
|
if: contains(matrix.target, 'apple')
|
|
run: |
|
|
curl -L "https://github.com/phracker/MacOSX-SDKs/releases/download/11.3/MacOSX11.3.sdk.tar.xz" | tar -J -x -C /opt
|
|
- name: Cross build native tests
|
|
env:
|
|
SDKROOT: /opt/MacOSX11.3.sdk
|
|
run: |
|
|
yarn build:test -- --target ${{ matrix.target }} --cross-compile
|
|
- name: Upload artifacts
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: compat-${{ matrix.target }}
|
|
path: ./examples/napi-compat-mode/index.node
|
|
if-no-files-found: error
|
|
- name: Upload artifacts
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: napi-${{ matrix.target }}
|
|
path: ./examples/napi/index.node
|
|
if-no-files-found: error
|
|
|
|
test:
|
|
name: Test Zig Cross Compiled ${{ matrix.settings.target }}
|
|
runs-on: ${{ matrix.settings.host }}
|
|
needs:
|
|
- build
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
settings:
|
|
- host: ubuntu-latest
|
|
target: x86_64-unknown-linux-musl
|
|
- host: macos-latest
|
|
target: x86_64-apple-darwin
|
|
- host: ubuntu-latest
|
|
target: aarch64-unknown-linux-musl
|
|
|
|
steps:
|
|
- run: docker run --rm --privileged multiarch/qemu-user-static:register --reset
|
|
if: matrix.settings.host == 'ubuntu-latest'
|
|
- uses: actions/checkout@v3
|
|
- name: Setup node
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 18
|
|
cache: 'yarn'
|
|
- name: Install dependencies
|
|
run: yarn install --immutable --mode=skip-build
|
|
- name: Download artifacts
|
|
uses: actions/download-artifact@v3
|
|
with:
|
|
name: napi-${{ matrix.settings.target }}
|
|
path: ./examples/napi/
|
|
- name: Download artifacts
|
|
uses: actions/download-artifact@v3
|
|
with:
|
|
name: compat-${{ matrix.settings.target }}
|
|
path: ./examples/napi-compat-mode/
|
|
- name: List files
|
|
run: |
|
|
ls ./examples/napi
|
|
ls ./examples/napi-compat-mode
|
|
- name: Test
|
|
run: yarn test --verbose
|
|
env:
|
|
SKIP_UNWIND_TEST: 1
|
|
if: matrix.settings.host == 'macos-latest'
|
|
- name: Test
|
|
uses: docker://multiarch/alpine:aarch64-latest-stable
|
|
if: matrix.settings.target == 'aarch64-unknown-linux-musl'
|
|
with:
|
|
args: >
|
|
sh -c "
|
|
apk add nodejs yarn && \
|
|
yarn test
|
|
"
|
|
- name: Test
|
|
uses: addnab/docker-run-action@v3
|
|
if: matrix.settings.target == 'x86_64-unknown-linux-musl'
|
|
with:
|
|
image: ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-alpine
|
|
options: -v ${{ github.workspace }}:/napi-rs -w /napi-rs
|
|
run: yarn test
|