Skip to content

Nightly Toolchain Note #3751

Nightly Toolchain Note

Nightly Toolchain Note #3751

Workflow file for this run

---
name: Build @bitwarden/sdk-napi
on:
pull_request:
push:
branches:
- "main"
- "rc"
- "hotfix-rc"
workflow_dispatch:
defaults:
run:
shell: bash
working-directory: crates/bitwarden-napi
jobs:
generate_schemas:
uses: ./.github/workflows/generate_schemas.yml
build:
name: Building @bitwarden/sdk-napi for - ${{ matrix.settings.os }}
runs-on: ${{ matrix.settings.os || 'ubuntu-latest' }}
needs: generate_schemas
strategy:
fail-fast: false
matrix:
settings:
- os: macos-12
target: x86_64-apple-darwin
build: |
npm run build
strip -x *.node
- os: macos-12
target: aarch64-apple-darwin
build: |
npm run build-arm64
strip -x *.node
- os: windows-2022
target: x86_64-pc-windows-msvc
build: npm run build
- os: ubuntu-22.04
target: x86_64-unknown-linux-gnu
build: |
set -e &&
npm run build &&
strip *.node
steps:
- name: Checkout repo
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Setup Node
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
with:
node-version: 18
cache: "npm"
cache-dependency-path: crates/bitwarden-napi/package-lock.json
- name: Install rust
uses: dtolnay/rust-toolchain@be73d7920c329f220ce78e0234b8f96b7ae60248 # stable
with:
toolchain: stable
targets: ${{ matrix.settings.target }}
- name: Cache cargo registry
uses: Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84 # v2.7.3
with:
key: ${{ matrix.settings.target }}-cargo-${{ matrix.settings.os }}
- name: Retrieve schemas
uses: actions/download-artifact@eaceaf801fd36c7dee90939fad912460b18a1ffe # v4.1.2
with:
name: schemas.ts
path: ${{ github.workspace }}/crates/bitwarden-napi/src-ts/bitwarden_client/
- name: Install dependencies
run: npm ci
- name: Build
run: ${{ matrix.settings.build }}
- name: Upload artifact
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1
with:
name: sdk-bitwarden-napi-${{ matrix.settings.target }}
path: ${{ github.workspace }}/crates/bitwarden-napi/sdk-napi.*.node
if-no-files-found: error