0.2.1 #35
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
env: | |
APP_NAME: node-altjtalk-binding | |
on: | |
push: | |
tags: | |
- v*.*.* | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
settings: | |
- host: macos-latest | |
target: x86_64-apple-darwin | |
build: | | |
pnpm build | |
strip -x *.node | |
- host: windows-latest | |
build: pnpm build | |
target: x86_64-pc-windows-msvc | |
- host: macos-latest | |
target: aarch64-apple-darwin | |
build: | | |
pnpm build --target aarch64-apple-darwin | |
strip -x *.node | |
- host: ubuntu-latest | |
target: x86_64-unknown-linux-gnu | |
build: |- | |
set -e && | |
pnpm build --target x86_64-unknown-linux-gnu && | |
strip *.node | |
- host: ubuntu-latest | |
target: aarch64-unknown-linux-gnu | |
cross: gcc-aarch64-linux-gnu g++-aarch64-linux-gnu | |
build: |- | |
pnpm build --target aarch64-unknown-linux-gnu | |
aarch64-linux-gnu-strip *.node | |
- host: windows-latest | |
target: aarch64-pc-windows-msvc | |
build: pnpm build --target aarch64-pc-windows-msvc | |
name: stable - ${{ matrix.settings.target }} - node@20 | |
runs-on: ${{ matrix.settings.host }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
if: ${{ !matrix.settings.docker }} | |
with: | |
node-version: 20 | |
check-latest: true | |
cache: pnpm | |
- name: Install | |
uses: dtolnay/rust-toolchain@stable | |
if: ${{ !matrix.settings.docker }} | |
with: | |
toolchain: stable | |
targets: ${{ matrix.settings.target }} | |
- name: Cache cargo | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
.cargo-cache | |
target/ | |
key: ${{ matrix.settings.target }}-cargo-${{ matrix.settings.host }} | |
- name: Setup config | |
run: | | |
cat <<EOF > ~/.cargo/config.toml | |
[target.aarch64-unknown-linux-musl] | |
linker = "aarch64-linux-musl-gcc" | |
rustflags = ["-C", "target-feature=-crt-static"] | |
[target.aarch64-unknown-linux-gnu] | |
linker = "aarch64-linux-gnu-gcc" | |
EOF | |
shell: bash | |
- name: Setup cross compiler | |
if: ${{ matrix.settings.cross }} | |
run: sudo apt-get update && sudo apt-get install -y ${{ matrix.settings.cross }} | |
- name: Install dependencies | |
run: pnpm install | |
- name: Build | |
run: ${{ matrix.settings.build }} | |
shell: bash | |
- name: Upload artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: bindings-${{ matrix.settings.target }} | |
path: ${{ env.APP_NAME }}.*.node | |
if-no-files-found: error | |
universal-macOS: | |
name: Build universal macOS binary | |
needs: | |
- build | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
check-latest: true | |
cache: pnpm | |
- name: Install dependencies | |
run: pnpm install | |
- name: Download macOS x64 artifact | |
uses: actions/download-artifact@v3 | |
with: | |
name: bindings-x86_64-apple-darwin | |
path: artifacts | |
- name: Download macOS arm64 artifact | |
uses: actions/download-artifact@v3 | |
with: | |
name: bindings-aarch64-apple-darwin | |
path: artifacts | |
- name: Combine binaries | |
run: pnpm universal | |
- name: Upload artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: bindings-universal-apple-darwin | |
path: ${{ env.APP_NAME }}.*.node | |
if-no-files-found: error | |
node-package: | |
name: Create Node package | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Create node package | |
run: | | |
mkdir package | |
cp install.mjs index.js index.d.ts package.json LICENSE README.md package/ | |
tar czvf node.tar.gz package | |
rm -r package | |
- name: Upload artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: node-package | |
path: node.tar.gz | |
if-no-files-found: error | |
create-release: | |
name: Create Release | |
permissions: | |
contents: write | |
needs: [ build, universal-macOS, node-package ] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download All Artifacts | |
uses: actions/download-artifact@v3 | |
- name: Check Tag | |
id: check-tag | |
run: | | |
if [[ ${{ github.event.ref }} =~ ^refs/tags/v[0-9]+\.[0-9]+\.[0-9]+$ ]]; then | |
echo "Not prerelease" | |
echo "prerelease=false" >> $GITHUB_OUTPUT | |
else | |
echo "Prerelease" | |
echo "prerelease=true" >> $GITHUB_OUTPUT | |
fi | |
- name: Create release | |
uses: "marvinpinto/action-automatic-releases@latest" | |
with: | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
prerelease: ${{ steps.check-tag.outputs.prerelease == 'true' }} | |
files: | | |
**/*.node | |
**/*.tar.gz |