-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
51 changed files
with
6,215 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,112 @@ | ||
name: Building Rust Binding And Upload Artifacts | ||
on: workflow_call | ||
|
||
jobs: | ||
build: | ||
name: Build and Upload Artifacts - ${{ matrix.settings.abi }} | ||
runs-on: ${{ matrix.settings.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
settings: | ||
- os: ubuntu-latest | ||
docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-debian | ||
abi: linux-x64-gnu | ||
build: >- | ||
set -e && | ||
unset CC_x86_64_unknown_linux_gnu && | ||
unset CC && | ||
npm run build -- --target x86_64-unknown-linux-gnu --abi linux-x64-gnu | ||
- os: ubuntu-latest | ||
docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-alpine | ||
abi: linux-x64-musl | ||
build: >- | ||
set -e && | ||
unset CC_x86_64_unknown_linux_musl && | ||
unset CC && | ||
npm run build -- --target x86_64-unknown-linux-musl --abi linux-x64-musl | ||
- os: windows-latest | ||
abi: win32-x64-msvc | ||
- os: macos-13 | ||
abi: darwin-x64 | ||
- os: macos-latest | ||
abi: darwin-arm64 | ||
|
||
# cross compile | ||
# windows. Note swc plugins is not supported on ia32 and arm64 | ||
- os: windows-latest | ||
abi: win32-ia32-msvc | ||
target: i686-pc-windows-msvc | ||
build: | | ||
export CARGO_PROFILE_RELEASE_LTO=false | ||
cargo install --locked cargo-xwin | ||
npm run build -- --target i686-pc-windows-msvc --abi win32-ia32-msvc --cargo-flags="--no-default-features" | ||
- os: windows-latest | ||
abi: win32-arm64-msvc | ||
target: aarch64-pc-windows-msvc | ||
build: | | ||
export CARGO_PROFILE_RELEASE_CODEGEN_UNITS=256 | ||
export CARGO_PROFILE_RELEASE_LTO=false | ||
cargo install --locked cargo-xwin | ||
npm run build -- --target aarch64-pc-windows-msvc --abi win32-arm64-msvc --cargo-flags="--no-default-features" | ||
# linux | ||
- os: ubuntu-latest | ||
abi: linux-arm64-musl | ||
target: aarch64-unknown-linux-musl | ||
zig: true | ||
- os: ubuntu-latest | ||
abi: linux-arm64-gnu | ||
target: aarch64-unknown-linux-gnu | ||
zig: true | ||
# - os: ubuntu-latest | ||
# abi: darwin-x64 | ||
# target: x86_64-apple-darwin | ||
# osxcross: true | ||
# zig: true | ||
# - os: ubuntu-latest | ||
# abi: darwin-arm64 | ||
# target: aarch64-apple-darwin | ||
# osxcross: true | ||
# zig: true | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Cache rust artifacts | ||
uses: Swatinem/rust-cache@v2 | ||
with: | ||
shared-key: rust-build-${{ matrix.settings.abi }} | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
- name: Install Dependencies | ||
run: npm install -g [email protected] && pnpm i --frozen-lockfile | ||
- run: rustup target add ${{ matrix.settings.target }} | ||
if: ${{ matrix.settings.target }} | ||
# Use the v1 of this action | ||
- uses: mbround18/setup-osxcross@v1 | ||
if: ${{ matrix.settings.osxcross }} | ||
# This builds executables & sets env variables for rust to consume. | ||
with: | ||
osx-version: '12.3' | ||
- uses: goto-bus-stop/setup-zig@v2 | ||
if: ${{ matrix.settings.zig }} | ||
- name: Build in docker | ||
uses: addnab/docker-run-action@v3 | ||
if: ${{ matrix.settings.docker }} | ||
with: | ||
image: ${{ matrix.settings.docker }} | ||
options: -v ${{ env.HOME }}/.cargo/git:/root/.cargo/git -v ${{ env.HOME }}/.cargo/registry:/root/.cargo/registry -v ${{ github.workspace }}:/build -w /build | ||
run: ${{ matrix.settings.build }} | ||
- name: Default Build | ||
if: ${{ !matrix.settings.docker && !matrix.settings.build }} | ||
run: >- | ||
npm run build -- --abi ${{ matrix.settings.abi }} ${{ matrix.settings.target && format('--target {0}', matrix.settings.target) || '' }} ${{ matrix.settings.zig && '--zig' || '' }} | ||
shell: bash | ||
- name: Build | ||
if: ${{ !matrix.settings.docker && matrix.settings.build }} | ||
run: ${{ matrix.settings.build }} | ||
shell: bash | ||
- name: Upload Plugin | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: ${{ github.sha }}-${{ matrix.settings.abi }}-plugin | ||
path: npm/${{ matrix.settings.abi }}/index.farm |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: Test Plugin | ||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
call-rust-build: | ||
uses: ./.github/workflows/build.yaml | ||
|
||
test-artifacts: | ||
name: Test Artifacts | ||
needs: [call-rust-build] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
# batch download artifacts | ||
- uses: actions/download-artifact@v3 | ||
with: | ||
path: /tmp/artifacts | ||
- name: Check Artifacts | ||
run: | | ||
for abi in linux-x64-gnu linux-x64-musl darwin-x64 win32-x64-msvc linux-arm64-musl linux-arm64-gnu darwin-arm64 win32-ia32-msvc win32-arm64-msvc | ||
do | ||
mv /tmp/artifacts/${{ github.sha }}-${abi}-plugin/* ./npm/${abi} | ||
test -f ./npm/${abi}/index.farm | ||
done | ||
- name: Setup Node.js 18.x | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18.x | ||
- name: Install Dependencies | ||
run: npm install -g [email protected] | ||
- name: Test Example | ||
run: cd playground && pnpm i && pnpm build |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: Publish packages and crates | ||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
concurrency: ${{ github.workflow }}-${{ github.ref }} | ||
|
||
jobs: | ||
call-rust-build: | ||
uses: ./.github/workflows/build.yaml | ||
|
||
release: | ||
name: Release | ||
needs: [call-rust-build] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Repo | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup Node.js 18.x | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18.x | ||
|
||
# batch download artifacts | ||
- uses: actions/download-artifact@v3 | ||
with: | ||
path: /tmp/artifacts | ||
- name: Move Artifacts | ||
run: | | ||
for abi in linux-x64-gnu linux-x64-musl darwin-x64 win32-x64-msvc linux-arm64-musl linux-arm64-gnu darwin-arm64 win32-ia32-msvc win32-arm64-msvc | ||
do | ||
mv /tmp/artifacts/${{ github.sha }}-${abi}-plugin/* ./npm/${abi} | ||
test -f ./npm/${abi}/index.farm | ||
done | ||
- name: Install Dependencies | ||
run: npm install -g [email protected] && pnpm i --frozen-lockfile | ||
|
||
- name: Publish to npm | ||
run: npm set //registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }} && npm publish |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,197 @@ | ||
# Created by https://www.toptal.com/developers/gitignore/api/node | ||
# Edit at https://www.toptal.com/developers/gitignore?templates=node | ||
|
||
### Node ### | ||
# Logs | ||
logs | ||
*.log | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
lerna-debug.log* | ||
|
||
# Diagnostic reports (https://nodejs.org/api/report.html) | ||
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json | ||
|
||
# Runtime data | ||
pids | ||
*.pid | ||
*.seed | ||
*.pid.lock | ||
|
||
# Directory for instrumented libs generated by jscoverage/JSCover | ||
lib-cov | ||
|
||
# Coverage directory used by tools like istanbul | ||
coverage | ||
*.lcov | ||
|
||
# nyc test coverage | ||
.nyc_output | ||
|
||
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) | ||
.grunt | ||
|
||
# Bower dependency directory (https://bower.io/) | ||
bower_components | ||
|
||
# node-waf configuration | ||
.lock-wscript | ||
|
||
# Compiled binary addons (https://nodejs.org/api/addons.html) | ||
build/Release | ||
|
||
# Dependency directories | ||
node_modules/ | ||
jspm_packages/ | ||
|
||
# TypeScript v1 declaration files | ||
typings/ | ||
|
||
# TypeScript cache | ||
*.tsbuildinfo | ||
|
||
# Optional npm cache directory | ||
.npm | ||
|
||
# Optional eslint cache | ||
.eslintcache | ||
|
||
# Microbundle cache | ||
.rpt2_cache/ | ||
.rts2_cache_cjs/ | ||
.rts2_cache_es/ | ||
.rts2_cache_umd/ | ||
|
||
# Optional REPL history | ||
.node_repl_history | ||
|
||
# Output of 'npm pack' | ||
*.tgz | ||
|
||
# Yarn Integrity file | ||
.yarn-integrity | ||
|
||
# dotenv environment variables file | ||
.env | ||
.env.test | ||
|
||
# parcel-bundler cache (https://parceljs.org/) | ||
.cache | ||
|
||
# Next.js build output | ||
.next | ||
|
||
# Nuxt.js build / generate output | ||
.nuxt | ||
dist | ||
|
||
# Gatsby files | ||
.cache/ | ||
# Comment in the public line in if your project uses Gatsby and not Next.js | ||
# https://nextjs.org/blog/next-9-1#public-directory-support | ||
# public | ||
|
||
# vuepress build output | ||
.vuepress/dist | ||
|
||
# Serverless directories | ||
.serverless/ | ||
|
||
# FuseBox cache | ||
.fusebox/ | ||
|
||
# DynamoDB Local files | ||
.dynamodb/ | ||
|
||
# TernJS port file | ||
.tern-port | ||
|
||
# Stores VSCode versions used for testing VSCode extensions | ||
.vscode-test | ||
|
||
# End of https://www.toptal.com/developers/gitignore/api/node | ||
|
||
# Created by https://www.toptal.com/developers/gitignore/api/macos | ||
# Edit at https://www.toptal.com/developers/gitignore?templates=macos | ||
|
||
### macOS ### | ||
# General | ||
.DS_Store | ||
.AppleDouble | ||
.LSOverride | ||
|
||
# Icon must end with two | ||
Icon | ||
|
||
|
||
# Thumbnails | ||
._* | ||
|
||
# Files that might appear in the root of a volume | ||
.DocumentRevisions-V100 | ||
.fseventsd | ||
.Spotlight-V100 | ||
.TemporaryItems | ||
.Trashes | ||
.VolumeIcon.icns | ||
.com.apple.timemachine.donotpresent | ||
|
||
# Directories potentially created on remote AFP share | ||
.AppleDB | ||
.AppleDesktop | ||
Network Trash Folder | ||
Temporary Items | ||
.apdisk | ||
|
||
### macOS Patch ### | ||
# iCloud generated files | ||
*.icloud | ||
|
||
# End of https://www.toptal.com/developers/gitignore/api/macos | ||
|
||
# Created by https://www.toptal.com/developers/gitignore/api/windows | ||
# Edit at https://www.toptal.com/developers/gitignore?templates=windows | ||
|
||
### Windows ### | ||
# Windows thumbnail cache files | ||
Thumbs.db | ||
Thumbs.db:encryptable | ||
ehthumbs.db | ||
ehthumbs_vista.db | ||
|
||
# Dump file | ||
*.stackdump | ||
|
||
# Folder config file | ||
[Dd]esktop.ini | ||
|
||
# Recycle Bin used on file shares | ||
$RECYCLE.BIN/ | ||
|
||
# Windows Installer files | ||
*.cab | ||
*.msi | ||
*.msix | ||
*.msm | ||
*.msp | ||
|
||
# Windows shortcuts | ||
*.lnk | ||
|
||
# End of https://www.toptal.com/developers/gitignore/api/windows | ||
|
||
#Added by cargo | ||
|
||
/target | ||
# Cargo.lock | ||
|
||
.pnp.* | ||
.yarn/* | ||
!.yarn/patches | ||
!.yarn/plugins | ||
!.yarn/releases | ||
!.yarn/sdks | ||
!.yarn/versions | ||
|
||
*.farm |
Oops, something went wrong.