napi-rs/.github/workflows/zig.yaml

149 lines
4.4 KiB
YAML
Raw Normal View History

name: Zig-Cross-Compile
env:
DEBUG: 'napi:*'
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
2022-04-01 15:29:51 +09:00
- uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
2022-02-08 10:57:22 +09:00
# Testing for compatibility with node v12.x
node-version: 12
check-latest: true
cache: 'yarn'
- name: Install
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
override: true
target: ${{ matrix.target }}
2022-04-15 22:22:04 +09:00
- 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@v1
with:
2022-03-07 01:26:20 +09:00
version: 0.9.1
- name: Cache NPM dependencies
2022-04-01 15:29:51 +09:00
uses: actions/cache@v3
with:
2022-04-01 15:29:51 +09:00
path: .yarn/cache
2022-04-15 22:22:04 +09:00
key: npm-cache-ubuntu-latest-gnu-node@16
- name: Install dependencies
2022-04-01 15:29:51 +09:00
run: yarn install --immutable --mode=skip-build
- name: 'Build TypeScript'
run: yarn build
- name: Cross build native tests
run: |
2022-03-13 19:28:41 +09:00
yarn workspace compat-mode-examples build --target ${{ matrix.target }} --zig
yarn workspace examples build --target ${{ matrix.target }} --zig
- name: Upload artifacts
uses: actions/upload-artifact@v2
with:
name: compat-${{ matrix.target }}
path: ./examples/napi-compat-mode/index.node
if-no-files-found: error
- name: Upload artifacts
uses: actions/upload-artifact@v2
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'
2022-04-01 15:29:51 +09:00
- uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 16
check-latest: true
cache: 'yarn'
- name: Cache NPM dependencies
2022-04-01 15:29:51 +09:00
uses: actions/cache@v3
with:
2022-04-01 15:29:51 +09:00
path: .yarn/cache
key: npm-cache-${{ matrix.settings.host }}-node@16
- name: Install dependencies
2022-04-01 15:29:51 +09:00
run: yarn install --immutable --mode=skip-build
- name: Download artifacts
2022-04-01 15:29:51 +09:00
uses: actions/download-artifact@v3
with:
name: napi-${{ matrix.settings.target }}
path: ./examples/napi/
- name: Download artifacts
2022-04-01 15:29:51 +09:00
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
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/${{ github.repository }}/nodejs-rust:lts-alpine
options: -v ${{ github.workspace }}:/napi-rs -w /napi-rs
run: yarn test