CI #41
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: om-syrinx | |
on: | |
push: | |
tags: | |
- v*.*.* | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
settings: | |
- host: macos-latest | |
target: x86_64-apple-darwin | |
build: | | |
pnpm build --target x86_64-apple-darwin | |
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@v4 | |
- uses: pnpm/action-setup@v3 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
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@v4 | |
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@v4 | |
with: | |
name: bindings-${{ matrix.settings.target }} | |
path: ${{ env.APP_NAME }}.*.node | |
if-no-files-found: error | |
create-release: | |
name: Create Release | |
permissions: | |
contents: write | |
needs: [build] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download All Artifacts | |
uses: actions/download-artifact@v4 | |
- 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 |