Skip to content
This repository has been archived by the owner on Sep 6, 2024. It is now read-only.

Commit

Permalink
Remove linux-musl
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewtoth committed Mar 5, 2024
1 parent 1e07b47 commit 4c0bf92
Showing 1 changed file with 0 additions and 81 deletions.
81 changes: 0 additions & 81 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,22 +36,13 @@ jobs:
- host: windows-latest
build: yarn build
target: x86_64-pc-windows-msvc
# - host: windows-latest
# build: |
# yarn build --target i686-pc-windows-msvc
# yarn test
# target: i686-pc-windows-msvc
- host: ubuntu-latest
target: x86_64-unknown-linux-gnu
docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-debian
build: |-
set -e &&
yarn build --target x86_64-unknown-linux-gnu &&
strip *.node
# - host: ubuntu-latest
# target: x86_64-unknown-linux-musl
# docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-alpine
# build: set -e && yarn build && strip *.node
- host: macos-latest
target: aarch64-apple-darwin
build: |
Expand All @@ -69,32 +60,6 @@ jobs:
set -e &&
yarn build --target aarch64-unknown-linux-gnu &&
aarch64-unknown-linux-gnu-strip *.node
# - host: ubuntu-latest
# target: armv7-unknown-linux-gnueabihf
# setup: |
# sudo apt-get update
# sudo apt-get install gcc-arm-linux-gnueabihf -y
# build: |
# yarn build --target armv7-unknown-linux-gnueabihf
# arm-linux-gnueabihf-strip *.node
# - host: ubuntu-latest
# target: aarch64-linux-android
# build: |
# yarn build --target aarch64-linux-android
# ${ANDROID_NDK_LATEST_HOME}/toolchains/llvm/prebuilt/linux-x86_64/bin/llvm-strip *.node
# - host: ubuntu-latest
# target: armv7-linux-androideabi
# build: |
# yarn build --target armv7-linux-androideabi
# ${ANDROID_NDK_LATEST_HOME}/toolchains/llvm/prebuilt/linux-x86_64/bin/llvm-strip *.node
- host: ubuntu-latest
target: aarch64-unknown-linux-musl
docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-alpine
build: |-
set -e &&
rustup target add aarch64-unknown-linux-musl &&
yarn build --target aarch64-unknown-linux-musl &&
/aarch64-linux-musl-cross/bin/aarch64-linux-musl-strip *.node
- host: windows-latest
target: aarch64-pc-windows-msvc
build: yarn build --target aarch64-pc-windows-msvc
Expand Down Expand Up @@ -163,52 +128,6 @@ jobs:
name: bindings-${{ matrix.settings.target }}
path: ${{ env.APP_NAME }}.*.node
if-no-files-found: error
# build-freebsd:
# runs-on: macos-13
# name: Build FreeBSD
# steps:
# - uses: actions/checkout@v4
# - name: Build
# id: build
# uses: cross-platform-actions/[email protected]
# env:
# DEBUG: napi:*
# RUSTUP_IO_THREADS: 1
# with:
# operating_system: freebsd
# version: "13.2"
# memory: 13G
# cpu_count: 3
# environment_variables: "DEBUG RUSTUP_IO_THREADS"
# shell: bash
# run: |
# sudo pkg install -y -f curl node libnghttp2 npm
# sudo npm install -g yarn --ignore-scripts
# curl https://sh.rustup.rs -sSf --output rustup.sh
# sh rustup.sh -y --profile minimal --default-toolchain beta
# source "$HOME/.cargo/env"
# echo "~~~~ rustc --version ~~~~"
# rustc --version
# echo "~~~~ node -v ~~~~"
# node -v
# echo "~~~~ yarn --version ~~~~"
# yarn --version
# pwd
# ls -lah
# whoami
# env
# freebsd-version
# yarn install
# yarn build
# rm -rf node_modules
# rm -rf target
# rm -rf .yarn/cache
# - name: Upload artifact
# uses: actions/upload-artifact@v4
# with:
# name: bindings-freebsd
# path: ${{ env.APP_NAME }}.*.node
# if-no-files-found: error
test-macOS-windows-binding:
name: Test bindings on ${{ matrix.settings.target }} - node@${{ matrix.node }}
needs:
Expand Down

0 comments on commit 4c0bf92

Please sign in to comment.