Skip to content

Bump to version 0.39.0 #1112

Bump to version 0.39.0

Bump to version 0.39.0 #1112

Workflow file for this run

# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
name: Bindings NodeJS CI
env:
DEBUG: napi:*
MACOSX_DEPLOYMENT_TARGET: '10.13'
on:
push:
branches:
- main
tags:
- '*'
pull_request:
branches:
- main
paths:
- "bindings/nodejs/**"
- ".github/workflows/bindings_nodejs.yml"
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
# Notes: this defaults only apply on run tasks.
defaults:
run:
working-directory: "bindings/nodejs"
steps:
- uses: actions/checkout@v3
- name: Setup Rust toolchain
uses: ./.github/actions/setup
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: '18'
cache: yarn
cache-dependency-path: "bindings/nodejs/yarn.lock"
- name: Corepack
run: corepack enable
- name: Install dependencies
run: yarn install --immutable
- name: Check format
run: yarn run prettier --check .
- name: Build
run: yarn build:debug
- name: Check diff
run: git diff --exit-code
- name: Test bindings
run: yarn test
linux:
runs-on: ubuntu-latest
if: "startsWith(github.ref, 'refs/tags/')"
# Notes: this defaults only apply on run tasks.
defaults:
run:
working-directory: "bindings/nodejs"
steps:
- uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 18
cache: yarn
cache-dependency-path: "bindings/nodejs/yarn.lock"
- name: Corepack
run: corepack enable
- name: Install dependencies
run: yarn install --immutable
- name: Build
run: |
docker run \
-v ${{ github.workspace }}:/build \
-e NAPI_TARGET=x86_64-unknown-linux-gnu \
-w /build/bindings/nodejs \
ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-debian \
bash -c "yarn build"
# change owner to current user
sudo chown -R 1001:121 *.node
- uses: actions/upload-artifact@v3
with:
name: bindings-linux
path: bindings/nodejs/*.node
- name: Test bindings
run: yarn test
windows:
runs-on: windows-latest
if: "startsWith(github.ref, 'refs/tags/')"
# Notes: this defaults only apply on run tasks.
defaults:
run:
working-directory: "bindings/nodejs"
steps:
- uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: '18'
cache: yarn
cache-dependency-path: "bindings/nodejs/yarn.lock"
- name: Corepack
run: corepack enable
- name: Install dependencies
run: yarn install --immutable
- name: Build
run: yarn build
- uses: actions/upload-artifact@v3
with:
name: bindings-windows
path: bindings/nodejs/*.node
- name: Test bindings
run: yarn test
macos:
runs-on: macos-latest
if: "startsWith(github.ref, 'refs/tags/')"
strategy:
matrix:
settings:
- target: x86_64-apple-darwin
test: yarn test
build: |
yarn build
strip -x *.node
- target: aarch64-apple-darwin
build: |
sudo rm -Rf /Library/Developer/CommandLineTools/SDKs/*;
export CC=$(xcrun -f clang);
export CXX=$(xcrun -f clang++);
SYSROOT=$(xcrun --sdk macosx --show-sdk-path);
export CFLAGS="-isysroot $SYSROOT -isystem $SYSROOT";
rustup target add aarch64-apple-darwin;
export NAPI_TARGET=aarch64-apple-darwin;
yarn build
strip -x *.node
# Notes: this defaults only apply on run tasks.
defaults:
run:
working-directory: "bindings/nodejs"
name: macos - ${{ matrix.settings.target }}
steps:
- uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: '18'
cache: yarn
cache-dependency-path: "bindings/nodejs/yarn.lock"
- name: Corepack
run: corepack enable
- name: Install dependencies
run: yarn install --immutable
- name: Build
run: ${{ matrix.settings.build }}
shell: bash
- uses: actions/upload-artifact@v3
with:
name: bindings-macos-${{ matrix.settings.target }}
path: bindings/nodejs/*.node
- name: Test bindings
if: ${{ matrix.settings.test }}
run: ${{ matrix.settings.test }}
shell: bash
release:
name: Release
runs-on: ubuntu-latest
if: "startsWith(github.ref, 'refs/tags/')"
needs: [macos, linux, windows]
permissions:
id-token: write
# Notes: this defaults only apply on run tasks.
defaults:
run:
working-directory: "bindings/nodejs"
steps:
- uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: "18"
cache: yarn
cache-dependency-path: "bindings/nodejs/yarn.lock"
- name: Corepack
run: corepack enable
- name: Install dependencies
run: yarn install --immutable
- name: Download all artifacts
uses: actions/download-artifact@v3
with:
path: bindings/nodejs/artifacts
- name: Move artifacts
run: yarn run napi artifacts
- name: List packages
run: ls -R ./npm
shell: bash
- name: Add LICENSE & NOTICE
# Set working directory to root to copy LICENSE & NOTICE
working-directory: .
run: cp LICENSE NOTICE ./bindings/nodejs
- name: Publish
run: |
echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc
npm publish --access public --provenance
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}