2023-09-29 22:51:00 +03:00
|
|
|
name: Publish (extra-bindings)
|
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
|
2022-09-04 17:34:41 +03:00
|
|
|
CARGO_PROFILE_RELEASE_LTO: "fat"
|
2021-10-31 04:04:18 +03:00
|
|
|
CI: "1"
|
2022-07-14 12:38:02 +03:00
|
|
|
DISABLE_PLUGIN_E2E_TESTS: true
|
2021-10-31 04:04:18 +03:00
|
|
|
|
2023-06-03 10:05:42 +03:00
|
|
|
permissions:
|
2023-08-07 11:16:05 +03:00
|
|
|
contents: write
|
2023-06-03 10:05:42 +03:00
|
|
|
id-token: write
|
|
|
|
|
2020-08-30 09:29:42 +03:00
|
|
|
on:
|
2023-09-29 23:52:40 +03:00
|
|
|
workflow_dispatch:
|
|
|
|
inputs:
|
|
|
|
package:
|
|
|
|
type: choice
|
|
|
|
description: Package name to publish
|
|
|
|
options:
|
|
|
|
- minifier
|
|
|
|
- html
|
|
|
|
- xml
|
2021-06-02 03:34:27 +03:00
|
|
|
|
2020-08-30 09:29:42 +03:00
|
|
|
jobs:
|
2023-09-29 22:51:00 +03:00
|
|
|
build-node:
|
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: |
|
2023-09-29 23:52:40 +03:00
|
|
|
(cd packages/${{ github.event.inputs.package }} && corepack yarn build && strip -x *.node)
|
2021-10-31 04:04:18 +03:00
|
|
|
- host: windows-latest
|
2021-12-21 23:20:20 +03:00
|
|
|
build: |
|
2023-09-29 23:52:40 +03:00
|
|
|
(cd packages/${{ github.event.inputs.package }} && yarn build)
|
2021-10-31 04:04:18 +03:00
|
|
|
target: x86_64-pc-windows-msvc
|
|
|
|
- host: windows-latest
|
|
|
|
build: |
|
2023-09-29 23:52:40 +03:00
|
|
|
(cd packages/${{ github.event.inputs.package }} && corepack yarn build --target i686-pc-windows-msvc)
|
2021-10-31 04:04:18 +03:00
|
|
|
target: i686-pc-windows-msvc
|
|
|
|
- host: ubuntu-latest
|
|
|
|
target: x86_64-unknown-linux-gnu
|
2022-05-04 13:04:48 +03:00
|
|
|
docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-debian
|
2022-01-20 05:21:24 +03:00
|
|
|
build: >-
|
2022-05-04 13:04:48 +03:00
|
|
|
set -e &&
|
2023-09-29 22:51:00 +03:00
|
|
|
unset CC_x86_64_unknown_linux_gnu && unset CC &&
|
2023-09-29 23:52:40 +03:00
|
|
|
(cd packages/${{ github.event.inputs.package }} && corepack yarn build --target x86_64-unknown-linux-gnu && strip ${{ github.event.inputs.package }}.linux-x64-gnu.node)
|
2021-10-31 04:04:18 +03:00
|
|
|
- host: ubuntu-latest
|
|
|
|
target: x86_64-unknown-linux-musl
|
2022-06-14 18:58:10 +03:00
|
|
|
# musl build is slow, let's disable the LTO
|
2022-01-20 05:21:24 +03:00
|
|
|
docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-alpine
|
|
|
|
build: >-
|
2022-05-04 13:04:48 +03:00
|
|
|
set -e &&
|
2022-06-14 18:58:10 +03:00
|
|
|
export CARGO_PROFILE_RELEASE_LTO=false &&
|
2023-09-29 23:52:40 +03:00
|
|
|
(cd packages/${{ github.event.inputs.package }} && RUSTFLAGS='-C target-feature=+sse2 -C target-feature=-crt-static' corepack yarn build &&
|
|
|
|
llvm-strip -x ${{ github.event.inputs.package }}.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";
|
2023-09-29 23:52:40 +03:00
|
|
|
(cd packages/${{ github.event.inputs.package }} && corepack yarn build --target=aarch64-apple-darwin && strip -x *.node)
|
2022-01-20 05:21:24 +03:00
|
|
|
- host: ubuntu-latest
|
2021-10-31 04:04:18 +03:00
|
|
|
target: aarch64-unknown-linux-gnu
|
2022-05-04 13:04:48 +03:00
|
|
|
docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-debian-aarch64
|
2022-01-20 05:21:24 +03:00
|
|
|
build: >-
|
|
|
|
set -e &&
|
2022-11-29 14:16:37 +03:00
|
|
|
export JEMALLOC_SYS_WITH_LG_PAGE=16 &&
|
2022-05-04 13:04:48 +03:00
|
|
|
rustup target add aarch64-unknown-linux-gnu &&
|
2022-05-25 17:51:36 +03:00
|
|
|
export CC_aarch64_unknown_linux_gnu=/usr/aarch64-unknown-linux-gnu/bin/aarch64-unknown-linux-gnu-gcc &&
|
2023-09-29 23:52:40 +03:00
|
|
|
(cd packages/${{ github.event.inputs.package }} && corepack yarn build --target aarch64-unknown-linux-gnu &&
|
|
|
|
llvm-strip -x ${{ github.event.inputs.package }}.linux-arm64-gnu.node)
|
2023-01-05 13:58:28 +03:00
|
|
|
- host: ubuntu-latest
|
2021-10-31 04:04:18 +03:00
|
|
|
target: armv7-unknown-linux-gnueabihf
|
|
|
|
setup: |
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get install gcc-arm-linux-gnueabihf g++-arm-linux-gnueabihf -y
|
2023-01-06 02:43:32 +03:00
|
|
|
# Use napi to build cli binary here to use zig as linker
|
2021-10-31 04:04:18 +03:00
|
|
|
build: |
|
2023-09-29 23:52:40 +03:00
|
|
|
(cd packages/${{ github.event.inputs.package }} && corepack yarn build --target armv7-unknown-linux-gnueabihf && arm-linux-gnueabihf-strip ${{ github.event.inputs.package }}.linux-arm-gnueabihf.node)
|
2021-10-31 04:04:18 +03:00
|
|
|
- host: ubuntu-latest
|
|
|
|
target: aarch64-unknown-linux-musl
|
|
|
|
downloadTarget: aarch64-unknown-linux-musl
|
2022-01-20 05:21:24 +03:00
|
|
|
docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-alpine
|
|
|
|
build: >-
|
2022-11-29 14:16:37 +03:00
|
|
|
export JEMALLOC_SYS_WITH_LG_PAGE=16 &&
|
2022-01-20 05:21:24 +03:00
|
|
|
rustup toolchain install $(cat ./rust-toolchain) &&
|
|
|
|
rustup target add aarch64-unknown-linux-musl &&
|
2023-09-29 23:52:40 +03:00
|
|
|
(cd packages/${{ github.event.inputs.package }} && env RUSTFLAGS='-C target-feature=-crt-static' corepack yarn build --target=aarch64-unknown-linux-musl && /aarch64-linux-musl-cross/bin/aarch64-linux-musl-strip ${{ github.event.inputs.package }}.linux-arm64-musl.node)
|
2021-10-31 04:04:18 +03:00
|
|
|
- host: windows-latest
|
|
|
|
target: aarch64-pc-windows-msvc
|
2022-01-20 11:11:56 +03:00
|
|
|
# Disable `LTO` and increase `codegen-units` to avoid llvm `OOM` on GitHub Actions.
|
2021-12-21 23:20:20 +03:00
|
|
|
build: |
|
2022-01-20 11:11:56 +03:00
|
|
|
export CARGO_PROFILE_RELEASE_CODEGEN_UNITS=256
|
|
|
|
export CARGO_PROFILE_RELEASE_LTO=false
|
2023-09-29 23:52:40 +03:00
|
|
|
(cd packages/${{ github.event.inputs.package }} && corepack yarn build --target aarch64-pc-windows-msvc)
|
2023-10-02 08:09:02 +03:00
|
|
|
name: "Build: ${{ github.event.inputs.package }} - ${{ matrix.settings.target }}"
|
2021-10-31 04:04:18 +03:00
|
|
|
runs-on: ${{ matrix.settings.host }}
|
2020-08-30 09:29:42 +03:00
|
|
|
steps:
|
2022-05-04 13:04:48 +03:00
|
|
|
- uses: actions/checkout@v3
|
2023-09-29 22:51:00 +03:00
|
|
|
|
2022-01-13 17:36:54 +03:00
|
|
|
- name: Setup node x64
|
2022-05-04 13:04:48 +03:00
|
|
|
uses: actions/setup-node@v3
|
2022-01-13 17:36:54 +03:00
|
|
|
if: matrix.settings.target != 'i686-pc-windows-msvc'
|
|
|
|
with:
|
2023-06-03 10:05:42 +03:00
|
|
|
node-version: 18
|
2022-01-13 17:36:54 +03:00
|
|
|
architecture: x64
|
2023-09-29 22:51:00 +03:00
|
|
|
|
2022-01-13 17:36:54 +03:00
|
|
|
- name: Setup node x86
|
2022-05-04 13:04:48 +03:00
|
|
|
uses: actions/setup-node@v3
|
2022-01-13 17:36:54 +03:00
|
|
|
if: matrix.settings.target == 'i686-pc-windows-msvc'
|
2020-08-30 09:29:42 +03:00
|
|
|
with:
|
2023-06-03 10:05:42 +03:00
|
|
|
node-version: 18
|
2022-01-13 17:36:54 +03:00
|
|
|
architecture: x86
|
2023-09-29 22:51:00 +03:00
|
|
|
|
2021-10-31 04:04:18 +03:00
|
|
|
- name: Install
|
2021-02-20 11:07:58 +03:00
|
|
|
uses: actions-rs/toolchain@v1
|
2022-01-20 05:21:24 +03:00
|
|
|
if: ${{ !matrix.settings.docker }}
|
2021-02-20 11:07:58 +03:00
|
|
|
with:
|
|
|
|
profile: minimal
|
|
|
|
override: true
|
2021-10-31 04:04:18 +03:00
|
|
|
target: ${{ matrix.settings.target }}
|
2023-09-29 22:51:00 +03:00
|
|
|
|
2023-01-06 02:43:32 +03:00
|
|
|
- uses: goto-bus-stop/setup-zig@v2
|
|
|
|
if: ${{ matrix.settings.target == 'armv7-unknown-linux-gnueabihf' }}
|
|
|
|
with:
|
2023-06-03 10:05:42 +03:00
|
|
|
version: 0.10.1
|
2023-09-29 22:51:00 +03:00
|
|
|
|
|
|
|
- shell: bash
|
|
|
|
run: corepack enable
|
|
|
|
|
2022-03-12 12:33:32 +03:00
|
|
|
- name: Install node dependencies
|
|
|
|
shell: bash
|
2023-09-29 23:52:40 +03:00
|
|
|
working-directory: "./packages/${{ github.event.inputs.package }}"
|
2023-09-29 22:51:00 +03:00
|
|
|
run: corepack yarn
|
2022-01-20 05:21:24 +03:00
|
|
|
|
2021-10-31 04:04:18 +03:00
|
|
|
- name: Setup toolchain
|
|
|
|
run: ${{ matrix.settings.setup }}
|
|
|
|
if: ${{ matrix.settings.setup }}
|
|
|
|
shell: bash
|
2023-09-29 22:51:00 +03:00
|
|
|
|
2021-10-31 04:04:18 +03:00
|
|
|
- name: Install dependencies
|
2023-09-29 22:51:00 +03:00
|
|
|
working-directory: "./packages"
|
2022-08-01 07:23:26 +03:00
|
|
|
run: |
|
2023-09-29 22:51:00 +03:00
|
|
|
# curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
|
2022-08-01 15:07:28 +03:00
|
|
|
echo '/usr/local/cargo/bin' >> $GITHUB_PATH
|
2022-01-20 05:21:24 +03:00
|
|
|
- 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
|
2022-08-01 15:07:28 +03:00
|
|
|
run: >-
|
|
|
|
yarn global add wasm-pack &&
|
|
|
|
${{ matrix.settings.build }}
|
2021-06-02 03:34:27 +03:00
|
|
|
- name: Build
|
2022-01-20 05:21:24 +03:00
|
|
|
if: ${{ !matrix.settings.docker }}
|
2021-10-31 04:04:18 +03:00
|
|
|
run: ${{ matrix.settings.build }}
|
2021-06-02 03:34:27 +03:00
|
|
|
shell: bash
|
2023-09-29 22:51:00 +03:00
|
|
|
|
2023-09-29 23:52:40 +03:00
|
|
|
- run: ls -al ./packages/${{ github.event.inputs.package }}
|
2023-09-29 22:51:00 +03:00
|
|
|
shell: bash
|
|
|
|
|
2021-06-02 03:34:27 +03:00
|
|
|
- name: Upload artifact
|
2023-09-29 11:47:59 +03:00
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: |
|
2023-09-29 23:52:40 +03:00
|
|
|
${{ github.event.inputs.package }}-${{ matrix.settings.target }}
|
2021-12-21 23:20:20 +03:00
|
|
|
path: |
|
2023-09-29 23:52:40 +03:00
|
|
|
./packages/${{ github.event.inputs.package }}/${{ github.event.inputs.package }}*
|
2021-12-02 06:57:27 +03:00
|
|
|
if-no-files-found: error
|
2023-09-29 22:51:00 +03:00
|
|
|
|
2021-10-31 04:04:18 +03:00
|
|
|
test-macOS-windows-binding:
|
|
|
|
name: Test bindings on ${{ matrix.settings.target }} - node@${{ matrix.node }}
|
|
|
|
needs:
|
2023-09-29 22:51:00 +03:00
|
|
|
- build-node
|
2021-10-31 04:04:18 +03:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
settings:
|
|
|
|
- host: windows-latest
|
|
|
|
target: x86_64-pc-windows-msvc
|
|
|
|
node:
|
|
|
|
- "14"
|
|
|
|
- "16"
|
2022-05-04 13:04:48 +03:00
|
|
|
- "18"
|
2021-10-31 04:04:18 +03:00
|
|
|
runs-on: ${{ matrix.settings.host }}
|
2020-12-30 08:30:09 +03:00
|
|
|
steps:
|
2022-05-04 13:04:48 +03:00
|
|
|
- uses: actions/checkout@v3
|
2020-12-30 08:30:09 +03:00
|
|
|
- name: Setup node
|
2022-05-04 13:04:48 +03:00
|
|
|
uses: actions/setup-node@v3
|
2020-12-30 08:30:09 +03:00
|
|
|
with:
|
2021-10-31 04:04:18 +03:00
|
|
|
node-version: ${{ matrix.node }}
|
2020-12-30 08:30:09 +03:00
|
|
|
- name: Install dependencies
|
2023-09-29 23:52:40 +03:00
|
|
|
working-directory: "./packages/${{ github.event.inputs.package }}"
|
2023-09-29 22:51:00 +03:00
|
|
|
run: corepack yarn
|
2021-10-31 04:04:18 +03:00
|
|
|
- name: Download artifacts
|
2022-05-04 13:04:48 +03:00
|
|
|
uses: actions/download-artifact@v3
|
2020-12-30 08:30:09 +03:00
|
|
|
with:
|
2023-09-29 23:52:40 +03:00
|
|
|
name: ${{ github.event.inputs.package }}-${{ matrix.settings.target }}
|
|
|
|
path: "./packages/${{ github.event.inputs.package }}"
|
2021-10-31 04:04:18 +03:00
|
|
|
- name: List packages
|
2023-09-29 23:52:40 +03:00
|
|
|
run: ls -R ./packages/${{ github.event.inputs.package }}
|
2021-10-31 04:04:18 +03:00
|
|
|
shell: bash
|
|
|
|
- name: Build TypeScript
|
2023-09-29 23:52:40 +03:00
|
|
|
working-directory: "./packages/${{ github.event.inputs.package }}"
|
2023-09-29 22:51:00 +03:00
|
|
|
run: corepack yarn build:ts
|
2021-10-31 04:04:18 +03:00
|
|
|
- name: Test bindings
|
2023-09-29 23:52:40 +03:00
|
|
|
working-directory: "./packages/${{ github.event.inputs.package }}"
|
2023-09-29 22:51:00 +03:00
|
|
|
run: corepack yarn test
|
2021-10-31 04:04:18 +03:00
|
|
|
test-linux-x64-gnu-binding:
|
|
|
|
name: Test bindings on Linux-x64-gnu - node@${{ matrix.node }}
|
|
|
|
needs:
|
2023-09-29 22:51:00 +03:00
|
|
|
- build-node
|
2021-10-31 04:04:18 +03:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
node:
|
|
|
|
- "14"
|
|
|
|
- "16"
|
2022-05-04 13:04:48 +03:00
|
|
|
- "18"
|
2021-10-31 04:04:18 +03:00
|
|
|
runs-on: ubuntu-latest
|
2020-12-30 08:30:09 +03:00
|
|
|
steps:
|
2022-05-04 13:04:48 +03:00
|
|
|
- uses: actions/checkout@v3
|
2020-12-30 08:30:09 +03:00
|
|
|
- name: Setup node
|
2022-05-04 13:04:48 +03:00
|
|
|
uses: actions/setup-node@v3
|
2020-12-30 08:30:09 +03:00
|
|
|
with:
|
2021-10-31 04:04:18 +03:00
|
|
|
node-version: ${{ matrix.node }}
|
2023-09-29 22:51:00 +03:00
|
|
|
|
2020-12-30 08:30:09 +03:00
|
|
|
- name: Install dependencies
|
2023-09-29 23:52:40 +03:00
|
|
|
working-directory: "./packages/${{ github.event.inputs.package }}"
|
2023-09-29 22:51:00 +03:00
|
|
|
run: corepack yarn
|
2021-10-31 04:04:18 +03:00
|
|
|
- name: Download artifacts
|
2022-05-04 13:04:48 +03:00
|
|
|
uses: actions/download-artifact@v3
|
2020-12-30 08:30:09 +03:00
|
|
|
with:
|
2023-09-29 23:52:40 +03:00
|
|
|
name: ${{ github.event.inputs.package }}-x86_64-unknown-linux-gnu
|
|
|
|
path: "./packages/${{ github.event.inputs.package }}"
|
2021-10-31 04:04:18 +03:00
|
|
|
- name: List packages
|
2023-09-29 23:52:40 +03:00
|
|
|
working-directory: "./packages/${{ github.event.inputs.package }}"
|
2021-10-31 04:04:18 +03:00
|
|
|
run: ls -R .
|
|
|
|
shell: bash
|
|
|
|
- name: Build TypeScript
|
2023-09-29 23:52:40 +03:00
|
|
|
working-directory: "./packages/${{ github.event.inputs.package }}"
|
2023-09-29 22:51:00 +03:00
|
|
|
run: corepack yarn build:ts
|
|
|
|
|
2021-10-31 04:04:18 +03:00
|
|
|
- name: Test bindings
|
2023-09-29 23:52:40 +03:00
|
|
|
run: docker run --rm -v $(pwd):/swc -w /swc/packages/${{ github.event.inputs.package }} node:${{ matrix.node }}-slim env DISABLE_PLUGIN_E2E_TESTS=true corepack yarn test
|
2021-10-31 04:04:18 +03:00
|
|
|
test-linux-x64-musl-binding:
|
|
|
|
name: Test bindings on x86_64-unknown-linux-musl - node@${{ matrix.node }}
|
|
|
|
needs:
|
2023-09-29 22:51:00 +03:00
|
|
|
- build-node
|
2021-10-31 04:04:18 +03:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
node:
|
|
|
|
- "14"
|
|
|
|
- "16"
|
2022-05-04 13:04:48 +03:00
|
|
|
- "18"
|
2021-10-31 04:04:18 +03:00
|
|
|
runs-on: ubuntu-latest
|
2021-06-02 03:34:27 +03:00
|
|
|
steps:
|
2022-05-04 13:04:48 +03:00
|
|
|
- uses: actions/checkout@v3
|
2021-06-02 03:34:27 +03:00
|
|
|
- name: Setup node
|
2022-05-04 13:04:48 +03:00
|
|
|
uses: actions/setup-node@v3
|
2021-06-02 03:34:27 +03:00
|
|
|
with:
|
2021-10-31 04:04:18 +03:00
|
|
|
node-version: ${{ matrix.node }}
|
2021-06-02 03:34:27 +03:00
|
|
|
- name: Install dependencies
|
2023-09-29 23:52:40 +03:00
|
|
|
working-directory: "./packages/${{ github.event.inputs.package }}"
|
2023-09-29 22:51:00 +03:00
|
|
|
run: corepack yarn
|
2021-10-31 04:04:18 +03:00
|
|
|
- name: Download artifacts
|
2022-05-04 13:04:48 +03:00
|
|
|
uses: actions/download-artifact@v3
|
2021-06-02 03:34:27 +03:00
|
|
|
with:
|
2023-09-29 23:52:40 +03:00
|
|
|
name: ${{ github.event.inputs.package }}-x86_64-unknown-linux-musl
|
|
|
|
path: "./packages/${{ github.event.inputs.package }}"
|
2021-10-31 04:04:18 +03:00
|
|
|
- name: List packages
|
2023-09-29 23:52:40 +03:00
|
|
|
working-directory: "./packages/${{ github.event.inputs.package }}"
|
2021-10-31 04:04:18 +03:00
|
|
|
run: ls -R .
|
|
|
|
shell: bash
|
|
|
|
- name: Build TypeScript
|
2023-09-29 23:52:40 +03:00
|
|
|
working-directory: "./packages/${{ github.event.inputs.package }}"
|
2023-09-29 22:51:00 +03:00
|
|
|
run: corepack yarn build:ts
|
2021-10-31 04:04:18 +03:00
|
|
|
- name: Test bindings
|
2023-09-29 23:52:40 +03:00
|
|
|
run: docker run --rm -v $(pwd):/swc -w /swc/packages/${{ github.event.inputs.package }} node:${{ matrix.node }}-alpine env DISABLE_PLUGIN_E2E_TESTS=true corepack yarn test
|
2021-10-31 04:04:18 +03:00
|
|
|
test-linux-aarch64-musl-binding:
|
|
|
|
name: Test bindings on aarch64-unknown-linux-musl - node@${{ matrix.node }}
|
|
|
|
needs:
|
2023-09-29 22:51:00 +03:00
|
|
|
- build-node
|
2021-10-31 04:04:18 +03:00
|
|
|
runs-on: ubuntu-latest
|
2020-12-30 08:30:09 +03:00
|
|
|
steps:
|
2022-05-04 13:04:48 +03:00
|
|
|
- uses: actions/checkout@v3
|
2021-10-31 04:04:18 +03:00
|
|
|
- name: Download artifacts
|
2022-05-04 13:04:48 +03:00
|
|
|
uses: actions/download-artifact@v3
|
2021-02-20 11:07:58 +03:00
|
|
|
with:
|
2023-09-29 23:52:40 +03:00
|
|
|
name: ${{ github.event.inputs.package }}-aarch64-unknown-linux-musl
|
|
|
|
path: "./packages/${{ github.event.inputs.package }}"
|
2021-10-31 04:04:18 +03:00
|
|
|
- name: List packages
|
2023-09-29 23:52:40 +03:00
|
|
|
working-directory: "./packages/${{ github.event.inputs.package }}"
|
2021-10-31 04:04:18 +03:00
|
|
|
run: ls -R .
|
2020-09-13 12:27:26 +03:00
|
|
|
shell: bash
|
2021-10-31 04:04:18 +03:00
|
|
|
- name: Install dependencies
|
2023-09-29 23:52:40 +03:00
|
|
|
working-directory: "./packages/${{ github.event.inputs.package }}"
|
2023-09-29 22:51:00 +03:00
|
|
|
run: corepack yarn
|
2021-10-31 04:04:18 +03:00
|
|
|
- name: Build TypeScript
|
2023-09-29 23:52:40 +03:00
|
|
|
working-directory: "./packages/${{ github.event.inputs.package }}"
|
2023-09-29 22:51:00 +03:00
|
|
|
run: corepack yarn build:ts
|
2023-06-03 10:05:42 +03:00
|
|
|
- name: Set up QEMU
|
|
|
|
uses: docker/setup-qemu-action@v2
|
|
|
|
with:
|
|
|
|
platforms: arm64
|
|
|
|
- run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
|
2021-10-31 04:04:18 +03:00
|
|
|
- name: Setup and run tests
|
|
|
|
uses: addnab/docker-run-action@v3
|
|
|
|
with:
|
2023-06-03 10:05:42 +03:00
|
|
|
image: node:lts-alpine
|
|
|
|
options: "--platform linux/arm64 -v ${{ github.workspace }}:/build -w /build"
|
|
|
|
run: >-
|
|
|
|
set -e &&
|
2023-09-29 23:52:40 +03:00
|
|
|
(cd "./packages/${{ github.event.inputs.package }}" && DISABLE_PLUGIN_E2E_TESTS=true corepack yarn test)
|
2021-10-31 04:04:18 +03:00
|
|
|
test-linux-arm-gnueabihf-binding:
|
|
|
|
name: Test bindings on armv7-unknown-linux-gnueabihf - node@${{ matrix.node }}
|
|
|
|
needs:
|
2023-09-29 22:51:00 +03:00
|
|
|
- build-node
|
2021-10-31 04:04:18 +03:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
node:
|
|
|
|
- "14"
|
|
|
|
- "16"
|
2022-05-04 13:04:48 +03:00
|
|
|
- "18"
|
2021-10-31 04:04:18 +03:00
|
|
|
runs-on: ubuntu-latest
|
2021-10-21 09:15:52 +03:00
|
|
|
steps:
|
2022-05-04 13:04:48 +03:00
|
|
|
- uses: actions/checkout@v3
|
2021-10-31 04:04:18 +03:00
|
|
|
- name: Download artifacts
|
2022-05-04 13:04:48 +03:00
|
|
|
uses: actions/download-artifact@v3
|
2021-10-21 09:15:52 +03:00
|
|
|
with:
|
2023-09-29 23:52:40 +03:00
|
|
|
name: ${{ github.event.inputs.package }}-armv7-unknown-linux-gnueabihf
|
|
|
|
path: "./packages/${{ github.event.inputs.package }}"
|
2021-10-31 04:04:18 +03:00
|
|
|
- name: List packages
|
2023-09-29 23:52:40 +03:00
|
|
|
working-directory: "./packages/${{ github.event.inputs.package }}"
|
2021-10-31 04:04:18 +03:00
|
|
|
run: ls -R .
|
|
|
|
shell: bash
|
|
|
|
- name: Install dependencies
|
2023-09-29 23:52:40 +03:00
|
|
|
working-directory: "./packages/${{ github.event.inputs.package }}"
|
2023-09-29 22:51:00 +03:00
|
|
|
run: corepack yarn
|
2021-10-31 04:04:18 +03:00
|
|
|
- name: Build TypeScript
|
2023-09-29 23:52:40 +03:00
|
|
|
working-directory: "./packages/${{ github.event.inputs.package }}"
|
2023-09-29 22:51:00 +03:00
|
|
|
run: corepack yarn build:ts
|
2023-06-03 10:05:42 +03:00
|
|
|
- name: Set up QEMU
|
|
|
|
uses: docker/setup-qemu-action@v2
|
|
|
|
with:
|
|
|
|
platforms: arm
|
|
|
|
- run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
|
2021-10-31 04:04:18 +03:00
|
|
|
- name: Setup and run tests
|
|
|
|
uses: addnab/docker-run-action@v3
|
|
|
|
with:
|
2023-06-03 10:05:42 +03:00
|
|
|
image: node:${{ matrix.node }}-bullseye-slim
|
|
|
|
options: "--platform linux/arm/v7 -v ${{ github.workspace }}:/build -w /build"
|
|
|
|
run: >-
|
|
|
|
set -e &&
|
2023-09-29 23:52:40 +03:00
|
|
|
(cd "./packages/${{ github.event.inputs.package }}" && DISABLE_PLUGIN_E2E_TESTS=true corepack yarn test &&
|
2023-09-29 22:51:00 +03:00
|
|
|
ls -la)
|
2023-09-29 23:54:48 +03:00
|
|
|
publish-node:
|
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-arm-gnueabihf-binding
|
|
|
|
- test-macOS-windows-binding
|
|
|
|
- test-linux-aarch64-musl-binding
|
2020-08-30 09:29:42 +03:00
|
|
|
steps:
|
2022-05-04 13:04:48 +03:00
|
|
|
- uses: actions/checkout@v3
|
2020-08-30 09:29:42 +03:00
|
|
|
|
|
|
|
- name: Setup node
|
2022-05-04 13:04:48 +03:00
|
|
|
uses: actions/setup-node@v3
|
2020-08-30 09:29:42 +03:00
|
|
|
with:
|
2023-06-03 10:05:42 +03:00
|
|
|
node-version: 18
|
2020-08-30 09:29:42 +03:00
|
|
|
|
|
|
|
- name: Install dependencies
|
2023-09-29 23:52:40 +03:00
|
|
|
working-directory: "./packages/${{ github.event.inputs.package }}"
|
2023-09-29 22:51:00 +03:00
|
|
|
run: corepack yarn
|
2020-08-30 09:29:42 +03:00
|
|
|
|
|
|
|
- name: Download all artifacts
|
2022-05-04 13:04:48 +03:00
|
|
|
uses: actions/download-artifact@v3
|
2020-08-30 09:29:42 +03:00
|
|
|
with:
|
2023-09-29 23:52:40 +03:00
|
|
|
path: ./packages/${{ github.event.inputs.package }}/artifacts
|
2020-08-30 09:29:42 +03:00
|
|
|
|
|
|
|
- name: List binaries
|
2023-09-29 23:52:40 +03:00
|
|
|
working-directory: "./packages/${{ github.event.inputs.package }}"
|
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
|
2023-09-29 23:52:40 +03:00
|
|
|
working-directory: "./packages/${{ github.event.inputs.package }}"
|
2020-08-30 09:29:42 +03:00
|
|
|
shell: bash
|
2021-12-21 23:20:20 +03:00
|
|
|
run: |
|
|
|
|
npm run artifacts
|
2020-08-30 09:29:42 +03:00
|
|
|
|
2020-12-30 08:30:09 +03:00
|
|
|
- name: List npm
|
2023-09-29 23:52:40 +03:00
|
|
|
working-directory: "./packages/${{ github.event.inputs.package }}"
|
2020-12-30 08:30:09 +03:00
|
|
|
run: ls -R ./scripts/npm
|
|
|
|
shell: bash
|
|
|
|
|
2020-09-07 19:14:05 +03:00
|
|
|
- name: Publish
|
|
|
|
run: |
|
2023-06-03 10:05:42 +03:00
|
|
|
npm config set provenance true
|
2020-09-07 19:14:05 +03:00
|
|
|
echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc
|
2023-09-29 23:52:40 +03:00
|
|
|
(cd ./packages/${{ github.event.inputs.package }} && 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 }}
|