Skip to content

back out specified napi versions #52

back out specified napi versions

back out specified napi versions #52

# Creates and publishes assets for a new release.
# To manually trigger this workflow, create a release in the GitHub UI.
name: "Publish binaries"
on:
workflow_dispatch:
push:
branches: [indexer-native-fix]
# release:
# types:
# - created
# - published
jobs:
publish-github:
strategy:
# Allowing jobs to fail until 'node-pre-gyp-github' supports failing gracefully if file already exists
# (https://github.com/bchr02/node-pre-gyp-github/issues/42)
fail-fast: false
matrix:
node_version: [18, 19, 20]
system:
- os: macos-12
target: x86_64-apple-darwin
- os: ubuntu-22.04
target: x86_64-unknown-linux-gnu
include:
- node_version: 17
system:
os: ubuntu-20.04
target: x86_64-unknown-linux-gnu
- node_version: 17
system:
os: macos-11
target: x86_64-apple-darwin
runs-on: ${{ matrix.system.os }}
steps:
- name: Checkout the repo
uses: actions/checkout@v2
- name: update OS
run: |
sudo apt-get update
sudo apt install -y --no-install-recommends gcc g++ make build-essential
if: ${{ runner.os == 'Linux' }}
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/[email protected]
with:
node-version: ${{ matrix.node_version }}
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Setup Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
target: ${{ matrix.system.target }}
override: true
- name: Install dependencies
working-directory: ./packages/indexer-native
run: yarn install --ignore-scripts
- name: Compile binary, test, package, and publish to Github release page
env:
NODE_PRE_GYP_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CARGO_BUILD_TARGET: ${{ matrix.system.target }}
working-directory: ./packages/indexer-native
run: yarn build-test-pack-publish