2020-09-18 20:07:28 +03:00
|
|
|
name: Publish (node)
|
2020-08-30 09:29:42 +03:00
|
|
|
|
2021-10-31 04:04:18 +03:00
|
|
|
env:
|
|
|
|
DEBUG: napi:*
|
|
|
|
APP_NAME: swc
|
|
|
|
MACOSX_DEPLOYMENT_TARGET: "10.13"
|
|
|
|
CARGO_INCREMENTAL: 0
|
|
|
|
CI: "1"
|
|
|
|
|
2020-08-30 09:29:42 +03:00
|
|
|
on:
|
2021-06-12 08:17:09 +03:00
|
|
|
push:
|
2020-08-30 09:29:42 +03:00
|
|
|
tags:
|
|
|
|
- v*
|
2021-06-02 03:34:27 +03:00
|
|
|
|
2020-08-30 09:29:42 +03:00
|
|
|
jobs:
|
|
|
|
build:
|
2021-06-12 08:17:09 +03:00
|
|
|
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
|
2020-08-30 09:29:42 +03:00
|
|
|
strategy:
|
2021-02-20 11:07:58 +03:00
|
|
|
fail-fast: false
|
2020-08-30 09:29:42 +03:00
|
|
|
matrix:
|
2021-10-31 04:04:18 +03:00
|
|
|
settings:
|
|
|
|
- host: macos-latest
|
|
|
|
target: x86_64-apple-darwin
|
|
|
|
build: |
|
2021-12-21 23:20:20 +03:00
|
|
|
cargo build -p swc_cli --release
|
|
|
|
cp ./target/release/swc .
|
2021-10-31 04:04:18 +03:00
|
|
|
yarn build
|
|
|
|
strip -x *.node
|
|
|
|
- host: windows-latest
|
2021-12-21 23:20:20 +03:00
|
|
|
build: |
|
|
|
|
yarn build
|
|
|
|
cargo build -p swc_cli --release
|
|
|
|
cp target/release/swc .
|
2021-10-31 04:04:18 +03:00
|
|
|
target: x86_64-pc-windows-msvc
|
|
|
|
- host: windows-latest
|
|
|
|
build: |
|
|
|
|
export CARGO_PROFILE_RELEASE_CODEGEN_UNITS=32;
|
|
|
|
export CARGO_PROFILE_RELEASE_LTO=false
|
2021-12-21 23:20:20 +03:00
|
|
|
cargo build -p swc_cli --release --target i686-pc-windows-msvc
|
|
|
|
cp target/i686-pc-windows-msvc/release/swc .
|
2021-10-31 04:04:18 +03:00
|
|
|
yarn build --target i686-pc-windows-msvc
|
|
|
|
yarn test
|
|
|
|
target: i686-pc-windows-msvc
|
|
|
|
setup: |
|
|
|
|
choco install nodejs-lts --x86 -y --force
|
|
|
|
echo "C:\Program Files (x86)\nodejs" >> $GITHUB_PATH
|
|
|
|
- host: ubuntu-latest
|
|
|
|
target: x86_64-unknown-linux-gnu
|
|
|
|
docker: |
|
|
|
|
docker login -u $DOCKER_USERNAME -p $DOCKER_PASSWORD $DOCKER_REGISTRY_URL
|
|
|
|
docker pull $DOCKER_REGISTRY_URL/napi-rs/napi-rs/nodejs-rust:lts-debian
|
|
|
|
docker tag $DOCKER_REGISTRY_URL/napi-rs/napi-rs/nodejs-rust:lts-debian builder
|
|
|
|
build: |
|
2021-12-21 23:20:20 +03:00
|
|
|
docker run --rm -v ~/.cargo/git:/root/.cargo/git -v ~/.cargo/registry:/root/.cargo/registry -v $(pwd):/build -w /build builder sh -c "cargo build -p swc_cli --release; rm -rf target/release/.cargo-lock" && cp target/release/swc .
|
2021-10-31 04:04:18 +03:00
|
|
|
docker run --rm -v ~/.cargo/git:/root/.cargo/git -v ~/.cargo/registry:/root/.cargo/registry -v $(pwd):/build -w /build builder yarn build && strip swc.linux-x64-gnu.node
|
|
|
|
- host: ubuntu-latest
|
|
|
|
target: x86_64-unknown-linux-musl
|
|
|
|
docker: |
|
|
|
|
docker login -u $DOCKER_USERNAME -p $DOCKER_PASSWORD $DOCKER_REGISTRY_URL
|
|
|
|
docker pull $DOCKER_REGISTRY_URL/napi-rs/napi-rs/nodejs-rust:lts-alpine
|
|
|
|
docker tag $DOCKER_REGISTRY_URL/napi-rs/napi-rs/nodejs-rust:lts-alpine builder
|
2021-12-21 23:20:20 +03:00
|
|
|
build: |
|
|
|
|
docker run --rm -v ~/.cargo/git:/root/.cargo/git -v ~/.cargo/registry:/root/.cargo/registry -v $(pwd):/build -w /build builder sh -c "cargo build -p swc_cli --release; rm -rf target/release/.cargo-lock" && cp target/release/swc .
|
|
|
|
docker run --rm -v ~/.cargo/git:/root/.cargo/git -v ~/.cargo/registry:/root/.cargo/registry -v $(pwd):/build -w /build builder yarn build && strip swc.linux-x64-musl.node
|
2021-10-31 04:04:18 +03:00
|
|
|
- host: macos-latest
|
|
|
|
target: aarch64-apple-darwin
|
|
|
|
build: |
|
|
|
|
sudo rm -Rf /Library/Developer/CommandLineTools/SDKs/*;
|
|
|
|
export CC=$(xcrun -f clang);
|
|
|
|
export CXX=$(xcrun -f clang++);
|
|
|
|
SYSROOT=$(xcrun --sdk macosx --show-sdk-path);
|
|
|
|
export CFLAGS="-isysroot $SYSROOT -isystem $SYSROOT";
|
2021-12-21 23:20:20 +03:00
|
|
|
cargo build -p swc_cli --release --target=aarch64-apple-darwin
|
|
|
|
cp ./target/aarch64-apple-darwin/release/swc .
|
2021-10-31 04:04:18 +03:00
|
|
|
yarn build --target=aarch64-apple-darwin
|
|
|
|
strip -x *.node
|
|
|
|
- host: ubuntu-latest
|
|
|
|
target: aarch64-unknown-linux-gnu
|
|
|
|
setup: |
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get install g++-aarch64-linux-gnu gcc-aarch64-linux-gnu -y
|
|
|
|
build: |
|
2021-12-21 23:20:20 +03:00
|
|
|
cargo build -p swc_cli --release --target=aarch64-unknown-linux-gnu
|
|
|
|
cp ./target/aarch64-unknown-linux-gnu/release/swc .
|
2021-10-31 04:04:18 +03:00
|
|
|
yarn build --target=aarch64-unknown-linux-gnu
|
|
|
|
aarch64-linux-gnu-strip swc.linux-arm64-gnu.node
|
|
|
|
- host: ubuntu-latest
|
|
|
|
target: armv7-unknown-linux-gnueabihf
|
|
|
|
setup: |
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get install gcc-arm-linux-gnueabihf g++-arm-linux-gnueabihf -y
|
|
|
|
build: |
|
2021-12-21 23:20:20 +03:00
|
|
|
cargo build -p swc_cli --release --target=armv7-unknown-linux-gnueabihf
|
|
|
|
cp ./target/armv7-unknown-linux-gnueabihf/release/swc .
|
2022-01-05 08:51:02 +03:00
|
|
|
yarn build --target=armv7-unknown-linux-gnueabihf --cargo-flags '--no-default-features --features swc_v1'
|
2021-10-31 04:04:18 +03:00
|
|
|
arm-linux-gnueabihf-strip swc.linux-arm-gnueabihf.node
|
|
|
|
- host: ubuntu-latest
|
|
|
|
target: aarch64-linux-android
|
|
|
|
build: |
|
|
|
|
export CARGO_TARGET_AARCH64_LINUX_ANDROID_LINKER="${ANDROID_NDK_HOME}/toolchains/llvm/prebuilt/linux-x86_64/bin/aarch64-linux-android24-clang"
|
2021-12-26 10:44:52 +03:00
|
|
|
export CC="${ANDROID_NDK_HOME}/toolchains/llvm/prebuilt/linux-x86_64/bin/aarch64-linux-android24-clang"
|
|
|
|
export CXX="${ANDROID_NDK_HOME}/toolchains/llvm/prebuilt/linux-x86_64/bin/aarch64-linux-android24-clang++"
|
|
|
|
export PATH="${ANDROID_NDK_HOME}/toolchains/llvm/prebuilt/linux-x86_64/bin:${PATH}"
|
2021-12-21 23:20:20 +03:00
|
|
|
cargo build -p swc_cli --release --target aarch64-linux-android
|
|
|
|
cp ./target/aarch64-linux-android/release/swc .
|
2021-10-31 04:04:18 +03:00
|
|
|
yarn build --target aarch64-linux-android
|
|
|
|
${ANDROID_NDK_HOME}/toolchains/llvm/prebuilt/linux-x86_64/bin/aarch64-linux-android-strip *.node
|
2021-12-24 05:21:24 +03:00
|
|
|
- host: ubuntu-latest
|
|
|
|
target: armv7-linux-androideabi
|
|
|
|
build: |
|
|
|
|
export CARGO_TARGET_ARMV7_LINUX_ANDROIDEABI_LINKER="${ANDROID_NDK_HOME}/toolchains/llvm/prebuilt/linux-x86_64/bin/armv7a-linux-androideabi24-clang"
|
|
|
|
export CC="${ANDROID_NDK_HOME}/toolchains/llvm/prebuilt/linux-x86_64/bin/armv7a-linux-androideabi24-clang"
|
|
|
|
export CXX="${ANDROID_NDK_HOME}/toolchains/llvm/prebuilt/linux-x86_64/bin/armv7a-linux-androideabi24-clang++"
|
|
|
|
export PATH="${ANDROID_NDK_HOME}/toolchains/llvm/prebuilt/linux-x86_64/bin:${PATH}"
|
|
|
|
cargo build -p swc_cli --release --target armv7-linux-androideabi
|
|
|
|
cp ./target/armv7-linux-androideabi/release/swc .
|
2022-01-05 08:51:02 +03:00
|
|
|
yarn build --target armv7-linux-androideabi --cargo-flags '--no-default-features --features swc_v1'
|
2021-12-24 05:21:24 +03:00
|
|
|
${ANDROID_NDK_HOME}/toolchains/llvm/prebuilt/linux-x86_64/bin/arm-linux-androideabi-strip *.node
|
2021-10-31 04:04:18 +03:00
|
|
|
- host: ubuntu-latest
|
|
|
|
target: aarch64-unknown-linux-musl
|
|
|
|
downloadTarget: aarch64-unknown-linux-musl
|
|
|
|
docker: |
|
|
|
|
docker login -u $DOCKER_USERNAME -p $DOCKER_PASSWORD $DOCKER_REGISTRY_URL
|
|
|
|
docker pull ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-alpine
|
|
|
|
docker tag ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-alpine builder
|
|
|
|
build: |
|
2021-12-21 23:20:20 +03:00
|
|
|
docker run --rm -v ~/.cargo/git:/root/.cargo/git -v ~/.cargo/registry:/root/.cargo/registry -v $(pwd):/build -w /build builder sh -c "rustup toolchain install $(cat ./rust-toolchain) && rustup target add aarch64-unknown-linux-musl && cargo build -p swc_cli --release --target=aarch64-unknown-linux-musl && rm -rf target/release/.cargo-lock" && cp target/aarch64-unknown-linux-musl/release/swc .
|
2021-10-31 04:04:18 +03:00
|
|
|
docker run --rm -v ~/.cargo/git:/root/.cargo/git -v ~/.cargo/registry:/root/.cargo/registry -v $(pwd):/build -w /build builder sh -c "rustup toolchain install $(cat ./rust-toolchain) && rustup target add aarch64-unknown-linux-musl && yarn build --target=aarch64-unknown-linux-musl && /aarch64-linux-musl-cross/bin/aarch64-linux-musl-strip swc.linux-arm64-musl.node"
|
|
|
|
- host: windows-latest
|
|
|
|
target: aarch64-pc-windows-msvc
|
2021-12-21 23:20:20 +03:00
|
|
|
build: |
|
2022-01-05 08:51:02 +03:00
|
|
|
cargo build -p swc_cli --release --target aarch64-pc-windows-msvc --cargo-flags '--no-default-features --features swc_v1'
|
2021-12-21 23:20:20 +03:00
|
|
|
cp target/aarch64-pc-windows-msvc/release/swc.exe .
|
|
|
|
yarn build --target aarch64-pc-windows-msvc
|
2021-10-31 04:04:18 +03:00
|
|
|
name: stable - ${{ matrix.settings.target }} - node@14
|
|
|
|
runs-on: ${{ matrix.settings.host }}
|
2020-08-30 09:29:42 +03:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Setup node
|
2021-01-11 13:39:17 +03:00
|
|
|
uses: actions/setup-node@v2
|
2020-08-30 09:29:42 +03:00
|
|
|
with:
|
2020-12-30 08:30:09 +03:00
|
|
|
node-version: 14
|
2021-10-31 04:04:18 +03:00
|
|
|
check-latest: true
|
|
|
|
- name: Install
|
2021-02-20 11:07:58 +03:00
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
profile: minimal
|
|
|
|
override: true
|
2021-10-31 04:04:18 +03:00
|
|
|
target: ${{ matrix.settings.target }}
|
|
|
|
- name: Generate Cargo.lock
|
|
|
|
uses: actions-rs/cargo@v1
|
2021-01-29 09:09:44 +03:00
|
|
|
with:
|
2021-10-31 04:04:18 +03:00
|
|
|
command: generate-lockfile
|
|
|
|
- name: Cache cargo registry
|
|
|
|
uses: actions/cache@v2
|
2021-01-29 09:09:44 +03:00
|
|
|
with:
|
2021-10-31 04:04:18 +03:00
|
|
|
path: ~/.cargo/registry
|
|
|
|
key: ${{ matrix.settings.target }}-node@14-cargo-registry-trimmed-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
- name: Cache cargo index
|
|
|
|
uses: actions/cache@v2
|
2021-06-02 03:34:27 +03:00
|
|
|
with:
|
2021-10-31 04:04:18 +03:00
|
|
|
path: ~/.cargo/git
|
|
|
|
key: ${{ matrix.settings.target }}-node@14-cargo-index-trimmed-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
- name: Cache NPM dependencies
|
|
|
|
uses: actions/cache@v2
|
2021-06-02 03:34:27 +03:00
|
|
|
with:
|
2021-10-31 04:04:18 +03:00
|
|
|
path: node_modules
|
|
|
|
key: npm-cache-${{ matrix.settings.target }}-node@14-${{ hashFiles('yarn.lock') }}
|
|
|
|
- name: Pull latest image
|
|
|
|
run: ${{ matrix.settings.docker }}
|
|
|
|
env:
|
|
|
|
DOCKER_REGISTRY_URL: ghcr.io
|
|
|
|
DOCKER_USERNAME: ${{ github.actor }}
|
|
|
|
DOCKER_PASSWORD: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
if: ${{ matrix.settings.docker }}
|
|
|
|
- name: Setup toolchain
|
|
|
|
run: ${{ matrix.settings.setup }}
|
|
|
|
if: ${{ matrix.settings.setup }}
|
|
|
|
shell: bash
|
|
|
|
- name: Install dependencies
|
|
|
|
run: yarn install --ignore-scripts --registry https://registry.npmjs.org --network-timeout 300000
|
2021-06-02 03:34:27 +03:00
|
|
|
- name: Build
|
2021-10-31 04:04:18 +03:00
|
|
|
run: ${{ matrix.settings.build }}
|
2021-06-02 03:34:27 +03:00
|
|
|
shell: bash
|
|
|
|
- name: Upload artifact
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
2021-10-31 04:04:18 +03:00
|
|
|
name: bindings-${{ matrix.settings.target }}
|
2021-12-21 23:20:20 +03:00
|
|
|
path: |
|
|
|
|
swc*
|
2021-12-02 06:57:27 +03:00
|
|
|
if-no-files-found: error
|
2021-10-31 04:04:18 +03:00
|
|
|
build-freebsd:
|
2021-06-12 08:17:09 +03:00
|
|
|
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
|
|
|
|
|
2021-10-31 04:04:18 +03:00
|
|
|
runs-on: macos-10.15
|
|
|
|
name: Build FreeBSD
|
2020-09-13 12:27:26 +03:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2021-10-31 04:04:18 +03:00
|
|
|
- name: Cleanup useless files to speedup
|
2020-09-13 12:27:26 +03:00
|
|
|
run: |
|
2021-12-02 06:57:27 +03:00
|
|
|
rm -rf crates/swc_css_parser/tests/errors
|
|
|
|
rm -rf crates/swc_css_parser/fixture
|
|
|
|
rm -rf crates/swc_css_parser/line-comment
|
|
|
|
rm -rf crates/swc_css_parser/recovery
|
|
|
|
rm -rf crates/swc_estree_compat/tests/fixtures
|
|
|
|
rm -rf crates/swc/tests/deno-unit
|
|
|
|
rm -rf crates/swc/tests/env
|
|
|
|
rm -rf crates/swc/tests/fixture
|
2021-10-31 04:04:18 +03:00
|
|
|
rm -rf tests/integration
|
2021-12-02 06:57:27 +03:00
|
|
|
rm -rf crates/swc/tests/projects
|
|
|
|
rm -rf crates/swc/tests/serde
|
|
|
|
rm -rf crates/swc/tests/srcmap
|
|
|
|
rm -rf crates/swc/tests/projects
|
|
|
|
rm -rf crates/swc/tests/stacktrace
|
|
|
|
rm -rf crates/swc/tests/swcrc_errors
|
|
|
|
rm -rf crates/swc/tests/vercel
|
|
|
|
rm -rf crates/swc/tests/tsc-references
|
|
|
|
rm -rf crates/swc_bundler/tests
|
|
|
|
rm -rf crates/swc_ecma_parser/tests/typescript
|
|
|
|
rm -rf crates/swc_ecma_minifier/tests/terser
|
|
|
|
rm -rf crates/swc_ecma_minifier/tests/compress
|
|
|
|
rm -rf crates/swc_ecma_minifier/tests/exec
|
|
|
|
rm -rf crates/swc_ecma_minifier/tests/full
|
|
|
|
rm -rf crates/swc_ecma_minifier/tests/mangle
|
|
|
|
rm -rf crates/swc_ecma_codegen/tests/fixture
|
|
|
|
rm -rf crates/swc_ecma_codegen/tests/test262
|
|
|
|
rm -rf crates/swc_ecma_codegen/tests/test262-min
|
2021-10-31 04:04:18 +03:00
|
|
|
- name: Build
|
|
|
|
id: build
|
|
|
|
uses: vmactions/freebsd-vm@v0.1.5
|
2020-09-13 12:27:26 +03:00
|
|
|
env:
|
2021-10-31 04:04:18 +03:00
|
|
|
DEBUG: napi:*
|
|
|
|
RUSTUP_HOME: /usr/local/rustup
|
|
|
|
CARGO_HOME: /usr/local/cargo
|
|
|
|
RUSTUP_IO_THREADS: 1
|
2020-12-30 08:30:09 +03:00
|
|
|
with:
|
2021-10-31 04:04:18 +03:00
|
|
|
envs: DEBUG RUSTUP_HOME CARGO_HOME RUSTUP_IO_THREADS
|
|
|
|
usesh: true
|
|
|
|
mem: 6000
|
|
|
|
prepare: |
|
|
|
|
pkg install -y curl node14
|
|
|
|
curl -qL https://www.npmjs.com/install.sh | sh
|
|
|
|
npm install -g yarn
|
|
|
|
curl https://sh.rustup.rs -sSf --output rustup.sh
|
|
|
|
sh rustup.sh -y --profile minimal --default-toolchain stable
|
|
|
|
export PATH="/usr/local/cargo/bin:$PATH"
|
|
|
|
echo "~~~~ rustc --version ~~~~"
|
|
|
|
rustc --version
|
|
|
|
echo "~~~~ node -v ~~~~"
|
|
|
|
node -v
|
|
|
|
echo "~~~~ yarn --version ~~~~"
|
|
|
|
yarn --version
|
|
|
|
run: |
|
|
|
|
export PATH="/usr/local/cargo/bin:$PATH"
|
|
|
|
pwd
|
|
|
|
ls -lah
|
|
|
|
whoami
|
|
|
|
env
|
|
|
|
freebsd-version
|
|
|
|
yarn install --ignore-scripts --registry https://registry.npmjs.org --network-timeout 300000
|
|
|
|
yarn build
|
2021-12-21 23:20:20 +03:00
|
|
|
cargo build -p swc_cli --release
|
|
|
|
cp ./target/release/swc .
|
2021-10-31 04:04:18 +03:00
|
|
|
yarn test
|
|
|
|
rm -rf node_modules
|
|
|
|
rm -rf target
|
2020-12-30 08:30:09 +03:00
|
|
|
- name: Upload artifact
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
2021-10-31 04:04:18 +03:00
|
|
|
name: bindings-freebsd
|
2021-12-21 23:20:20 +03:00
|
|
|
path: |
|
|
|
|
swc*
|
2021-12-02 06:57:27 +03:00
|
|
|
if-no-files-found: error
|
2021-10-31 04:04:18 +03:00
|
|
|
test-macOS-windows-binding:
|
2021-06-12 08:17:09 +03:00
|
|
|
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
|
2021-10-31 04:04:18 +03:00
|
|
|
name: Test bindings on ${{ matrix.settings.target }} - node@${{ matrix.node }}
|
|
|
|
needs:
|
|
|
|
- build
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
settings:
|
|
|
|
- host: windows-latest
|
|
|
|
target: x86_64-pc-windows-msvc
|
|
|
|
node:
|
|
|
|
- "12"
|
|
|
|
- "14"
|
|
|
|
- "16"
|
|
|
|
runs-on: ${{ matrix.settings.host }}
|
2020-12-30 08:30:09 +03:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Setup node
|
2021-01-11 13:39:17 +03:00
|
|
|
uses: actions/setup-node@v2
|
2020-12-30 08:30:09 +03:00
|
|
|
with:
|
2021-10-31 04:04:18 +03:00
|
|
|
node-version: ${{ matrix.node }}
|
|
|
|
check-latest: true
|
|
|
|
- name: Cache NPM dependencies
|
2020-12-30 08:30:09 +03:00
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
2021-10-31 04:04:18 +03:00
|
|
|
path: node_modules
|
|
|
|
key: npm-cache-test-${{ matrix.settings.target }}-${{ matrix.node }}-${{ hashFiles('yarn.lock') }}
|
2020-12-30 08:30:09 +03:00
|
|
|
- name: Install dependencies
|
2021-10-31 04:04:18 +03:00
|
|
|
run: yarn install --ignore-scripts --registry https://registry.npmjs.org --network-timeout 300000
|
|
|
|
- name: Download artifacts
|
|
|
|
uses: actions/download-artifact@v2
|
2020-12-30 08:30:09 +03:00
|
|
|
with:
|
2021-10-31 04:04:18 +03:00
|
|
|
name: bindings-${{ matrix.settings.target }}
|
|
|
|
path: .
|
|
|
|
- name: List packages
|
|
|
|
run: ls -R .
|
|
|
|
shell: bash
|
|
|
|
- name: Build TypeScript
|
|
|
|
run: yarn build:ts
|
|
|
|
- name: Test bindings
|
|
|
|
run: yarn test
|
|
|
|
test-linux-x64-gnu-binding:
|
2021-06-12 08:17:09 +03:00
|
|
|
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
|
2021-10-31 04:04:18 +03:00
|
|
|
name: Test bindings on Linux-x64-gnu - node@${{ matrix.node }}
|
|
|
|
needs:
|
|
|
|
- build
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
node:
|
|
|
|
- "12"
|
|
|
|
- "14"
|
|
|
|
- "16"
|
|
|
|
runs-on: ubuntu-latest
|
2020-12-30 08:30:09 +03:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Setup node
|
2021-01-11 13:39:17 +03:00
|
|
|
uses: actions/setup-node@v2
|
2020-12-30 08:30:09 +03:00
|
|
|
with:
|
2021-10-31 04:04:18 +03:00
|
|
|
node-version: ${{ matrix.node }}
|
|
|
|
check-latest: true
|
|
|
|
- name: Cache NPM dependencies
|
2020-12-30 08:30:09 +03:00
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
2021-10-31 04:04:18 +03:00
|
|
|
path: node_modules
|
|
|
|
key: npm-cache-test-linux-x64-gnu-${{ matrix.node }}-${{ hashFiles('yarn.lock') }}
|
2020-12-30 08:30:09 +03:00
|
|
|
- name: Install dependencies
|
2021-10-31 04:04:18 +03:00
|
|
|
run: yarn install --ignore-scripts --registry https://registry.npmjs.org --network-timeout 300000
|
|
|
|
- name: Download artifacts
|
|
|
|
uses: actions/download-artifact@v2
|
2020-12-30 08:30:09 +03:00
|
|
|
with:
|
2021-10-31 04:04:18 +03:00
|
|
|
name: bindings-x86_64-unknown-linux-gnu
|
|
|
|
path: .
|
|
|
|
- name: List packages
|
|
|
|
run: ls -R .
|
|
|
|
shell: bash
|
|
|
|
- name: Build TypeScript
|
|
|
|
run: yarn build:ts
|
|
|
|
- name: Test bindings
|
|
|
|
run: docker run --rm -v $(pwd):/swc -w /swc node:${{ matrix.node }}-slim yarn test
|
|
|
|
test-linux-x64-musl-binding:
|
2021-06-12 08:17:09 +03:00
|
|
|
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
|
2021-10-31 04:04:18 +03:00
|
|
|
name: Test bindings on x86_64-unknown-linux-musl - node@${{ matrix.node }}
|
|
|
|
needs:
|
|
|
|
- build
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
node:
|
|
|
|
- "12"
|
|
|
|
- "14"
|
|
|
|
- "16"
|
|
|
|
runs-on: ubuntu-latest
|
2021-06-02 03:34:27 +03:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Setup node
|
|
|
|
uses: actions/setup-node@v2
|
|
|
|
with:
|
2021-10-31 04:04:18 +03:00
|
|
|
node-version: ${{ matrix.node }}
|
|
|
|
check-latest: true
|
|
|
|
- name: Cache NPM dependencies
|
2021-06-02 03:34:27 +03:00
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
2021-10-31 04:04:18 +03:00
|
|
|
path: node_modules
|
|
|
|
key: npm-cache-test-x86_64-unknown-linux-musl-${{ matrix.node }}-${{ hashFiles('yarn.lock') }}
|
2021-06-02 03:34:27 +03:00
|
|
|
- name: Install dependencies
|
2021-10-31 04:04:18 +03:00
|
|
|
run: yarn install --ignore-scripts --registry https://registry.npmjs.org --network-timeout 300000
|
|
|
|
- name: Download artifacts
|
|
|
|
uses: actions/download-artifact@v2
|
2021-06-02 03:34:27 +03:00
|
|
|
with:
|
2021-10-31 04:04:18 +03:00
|
|
|
name: bindings-x86_64-unknown-linux-musl
|
|
|
|
path: .
|
|
|
|
- name: List packages
|
|
|
|
run: ls -R .
|
|
|
|
shell: bash
|
|
|
|
- name: Build TypeScript
|
|
|
|
run: yarn build:ts
|
|
|
|
- name: Test bindings
|
|
|
|
run: docker run --rm -v $(pwd):/swc -w /swc node:${{ matrix.node }}-alpine yarn test
|
|
|
|
test-linux-aarch64-gnu-binding:
|
2021-06-12 08:17:09 +03:00
|
|
|
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
|
2021-10-31 04:04:18 +03:00
|
|
|
name: Test bindings on aarch64-unknown-linux-gnu - node@${{ matrix.node }}
|
|
|
|
needs:
|
|
|
|
- build
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
node:
|
|
|
|
- "12"
|
|
|
|
- "14"
|
|
|
|
- "16"
|
|
|
|
runs-on: ubuntu-latest
|
2020-12-30 08:30:09 +03:00
|
|
|
steps:
|
|
|
|
- run: docker run --rm --privileged multiarch/qemu-user-static:register --reset
|
|
|
|
- uses: actions/checkout@v2
|
2021-10-31 04:04:18 +03:00
|
|
|
- name: Download artifacts
|
|
|
|
uses: actions/download-artifact@v2
|
2020-12-30 08:30:09 +03:00
|
|
|
with:
|
2021-10-31 04:04:18 +03:00
|
|
|
name: bindings-aarch64-unknown-linux-gnu
|
|
|
|
path: .
|
|
|
|
- name: List packages
|
|
|
|
run: ls -R .
|
|
|
|
shell: bash
|
|
|
|
- name: Cache NPM dependencies
|
2020-12-30 08:30:09 +03:00
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
2021-10-31 04:04:18 +03:00
|
|
|
path: node_modules
|
|
|
|
key: npm-cache-test-linux-aarch64-gnu-${{ matrix.node }}-${{ hashFiles('yarn.lock') }}
|
2020-12-30 08:30:09 +03:00
|
|
|
- name: Install dependencies
|
2021-10-31 04:04:18 +03:00
|
|
|
run: yarn install --ignore-scripts --ignore-platform --registry https://registry.npmjs.org --network-timeout 300000
|
|
|
|
- name: Build TypeScript
|
|
|
|
run: yarn build:ts
|
|
|
|
- name: Setup and run tests
|
|
|
|
uses: addnab/docker-run-action@v3
|
|
|
|
with:
|
|
|
|
image: ghcr.io/napi-rs/napi-rs/nodejs:aarch64-${{ matrix.node }}
|
|
|
|
options: "-v ${{ github.workspace }}:/build -w /build"
|
|
|
|
run: |
|
|
|
|
set -e
|
|
|
|
yarn test
|
|
|
|
ls -la
|
|
|
|
test-linux-aarch64-musl-binding:
|
2021-06-12 08:17:09 +03:00
|
|
|
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
|
2021-10-31 04:04:18 +03:00
|
|
|
name: Test bindings on aarch64-unknown-linux-musl - node@${{ matrix.node }}
|
|
|
|
needs:
|
|
|
|
- build
|
|
|
|
runs-on: ubuntu-latest
|
2020-12-30 08:30:09 +03:00
|
|
|
steps:
|
2021-10-31 04:04:18 +03:00
|
|
|
- run: docker run --rm --privileged multiarch/qemu-user-static:register --reset
|
2020-12-30 08:30:09 +03:00
|
|
|
- uses: actions/checkout@v2
|
2021-10-31 04:04:18 +03:00
|
|
|
- name: Download artifacts
|
|
|
|
uses: actions/download-artifact@v2
|
2021-02-20 11:07:58 +03:00
|
|
|
with:
|
2021-10-31 04:04:18 +03:00
|
|
|
name: bindings-aarch64-unknown-linux-musl
|
|
|
|
path: .
|
|
|
|
- name: List packages
|
|
|
|
run: ls -R .
|
2020-09-13 12:27:26 +03:00
|
|
|
shell: bash
|
2021-10-31 04:04:18 +03:00
|
|
|
- name: Cache NPM dependencies
|
|
|
|
uses: actions/cache@v2
|
2020-09-13 12:27:26 +03:00
|
|
|
with:
|
2021-10-31 04:04:18 +03:00
|
|
|
path: node_modules
|
|
|
|
key: npm-cache-test-linux-aarch64-musl-${{ matrix.node }}-${{ hashFiles('yarn.lock') }}
|
|
|
|
- name: Install dependencies
|
|
|
|
run: yarn install --ignore-scripts --ignore-platform --registry https://registry.npmjs.org --network-timeout 300000
|
|
|
|
- name: Build TypeScript
|
|
|
|
run: yarn build:ts
|
|
|
|
- name: Setup and run tests
|
|
|
|
uses: addnab/docker-run-action@v3
|
|
|
|
with:
|
|
|
|
image: multiarch/alpine:aarch64-latest-stable
|
|
|
|
options: "-v ${{ github.workspace }}:/build -w /build"
|
|
|
|
run: |
|
|
|
|
set -e
|
|
|
|
apk add nodejs npm yarn
|
|
|
|
yarn test
|
|
|
|
test-linux-arm-gnueabihf-binding:
|
2021-10-21 09:15:52 +03:00
|
|
|
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
|
2021-10-31 04:04:18 +03:00
|
|
|
name: Test bindings on armv7-unknown-linux-gnueabihf - node@${{ matrix.node }}
|
|
|
|
needs:
|
|
|
|
- build
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
node:
|
|
|
|
- "12"
|
|
|
|
- "14"
|
|
|
|
- "16"
|
|
|
|
runs-on: ubuntu-latest
|
2021-10-21 09:15:52 +03:00
|
|
|
steps:
|
2021-10-31 04:04:18 +03:00
|
|
|
- run: docker run --rm --privileged multiarch/qemu-user-static:register --reset
|
2021-10-21 09:15:52 +03:00
|
|
|
- uses: actions/checkout@v2
|
2021-10-31 04:04:18 +03:00
|
|
|
- name: Download artifacts
|
|
|
|
uses: actions/download-artifact@v2
|
2021-10-21 09:15:52 +03:00
|
|
|
with:
|
2021-10-31 04:04:18 +03:00
|
|
|
name: bindings-armv7-unknown-linux-gnueabihf
|
|
|
|
path: .
|
|
|
|
- name: List packages
|
|
|
|
run: ls -R .
|
|
|
|
shell: bash
|
|
|
|
- name: Cache NPM dependencies
|
|
|
|
uses: actions/cache@v2
|
2021-10-21 09:15:52 +03:00
|
|
|
with:
|
2021-10-31 04:04:18 +03:00
|
|
|
path: node_modules
|
|
|
|
key: npm-cache-test-linux-arm-gnueabihf-${{ matrix.node }}-${{ hashFiles('yarn.lock') }}
|
|
|
|
- name: Install dependencies
|
|
|
|
run: yarn install --ignore-scripts --ignore-platform --registry https://registry.npmjs.org --network-timeout 300000
|
|
|
|
- name: Build TypeScript
|
|
|
|
run: yarn build:ts
|
|
|
|
- name: Setup and run tests
|
|
|
|
uses: addnab/docker-run-action@v3
|
|
|
|
with:
|
|
|
|
image: ghcr.io/napi-rs/napi-rs/nodejs:armhf-${{ matrix.node }}
|
|
|
|
options: "-v ${{ github.workspace }}:/build -w /build"
|
|
|
|
run: |
|
|
|
|
set -e
|
|
|
|
yarn test
|
|
|
|
ls -la
|
2020-08-30 09:29:42 +03:00
|
|
|
publish:
|
2021-06-12 08:17:09 +03:00
|
|
|
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
|
|
|
|
|
2020-08-30 09:29:42 +03:00
|
|
|
name: npm
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
needs:
|
2021-10-31 04:04:18 +03:00
|
|
|
- test-linux-x64-gnu-binding
|
|
|
|
- test-linux-x64-musl-binding
|
|
|
|
- test-linux-aarch64-gnu-binding
|
|
|
|
- test-linux-arm-gnueabihf-binding
|
|
|
|
- test-macOS-windows-binding
|
|
|
|
- test-linux-aarch64-musl-binding
|
2021-12-02 06:57:27 +03:00
|
|
|
- build-freebsd
|
2020-08-30 09:29:42 +03:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Setup node
|
2021-01-11 13:39:17 +03:00
|
|
|
uses: actions/setup-node@v2
|
2020-08-30 09:29:42 +03:00
|
|
|
with:
|
2020-12-30 08:30:09 +03:00
|
|
|
node-version: 14
|
2020-08-30 09:29:42 +03:00
|
|
|
|
2020-09-13 18:25:22 +03:00
|
|
|
- name: Set release name
|
2020-11-22 12:14:22 +03:00
|
|
|
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
|
2020-09-13 18:25:22 +03:00
|
|
|
|
2021-10-31 04:04:18 +03:00
|
|
|
- name: Cache NPM dependencies
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: node_modules
|
|
|
|
key: npm-cache-publish-${{ hashFiles('yarn.lock') }}
|
|
|
|
|
2020-08-30 09:29:42 +03:00
|
|
|
- name: Install dependencies
|
2021-10-31 04:04:18 +03:00
|
|
|
run: yarn install --ignore-scripts --registry https://registry.npmjs.org --network-timeout 300000
|
2020-08-30 09:29:42 +03:00
|
|
|
|
|
|
|
- name: Download all artifacts
|
|
|
|
uses: actions/download-artifact@v2
|
|
|
|
with:
|
2020-09-05 11:48:22 +03:00
|
|
|
path: artifacts
|
2020-08-30 09:29:42 +03:00
|
|
|
|
|
|
|
- name: List binaries
|
2020-09-05 11:48:22 +03:00
|
|
|
run: ls -R artifacts
|
2020-08-30 09:29:42 +03:00
|
|
|
shell: bash
|
|
|
|
|
|
|
|
- name: Move binaries
|
|
|
|
shell: bash
|
2021-12-21 23:20:20 +03:00
|
|
|
run: |
|
|
|
|
./scripts/cli_artifacts.sh
|
|
|
|
npm run artifacts
|
2020-08-30 09:29:42 +03:00
|
|
|
|
2020-12-30 08:30:09 +03:00
|
|
|
- name: List npm
|
|
|
|
run: ls -R ./scripts/npm
|
|
|
|
shell: bash
|
|
|
|
|
2020-09-07 19:14:05 +03:00
|
|
|
- name: Publish
|
|
|
|
run: |
|
|
|
|
echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc
|
2020-12-23 06:01:49 +03:00
|
|
|
npm publish --access public
|
2020-09-07 19:14:05 +03:00
|
|
|
env:
|
2020-09-05 11:48:22 +03:00
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2020-09-07 19:14:05 +03:00
|
|
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|