Skip to content

Commit

Permalink
chore(ci): revert libssl-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
j-mendez committed Jan 28, 2025
1 parent 800751b commit c326fb6
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,12 @@ jobs:
target: x86_64-unknown-linux-gnu
setup: |
sudo apt-get update
sudo apt-get install -y gcc build-essential cmake ca-certificates libc6 perl
sudo apt-get install -y gcc build-essential cmake libssl-dev ca-certificates libc6 perl
build: yarn build --target x86_64-unknown-linux-gnu
# - host: ubuntu-latest
# target: x86_64-unknown-linux-musl
# setup: |
# sudo apt-get update && sudo apt-get install -y build-essential pkg-config cmake musl-tools musl-dev ca-certificates gcc g++ libc6
# sudo apt-get update && sudo apt-get install -y build-essential pkg-config cmake musl-tools musl-dev libssl-dev ca-certificates gcc g++ libc6
# export CC=musl-gcc
# docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-alpine
# build: yarn build --target x86_64-unknown-linux-musl
Expand All @@ -67,32 +67,32 @@ jobs:
docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-debian-aarch64
setup: |
sudo apt-get update
sudo apt-get install -y gcc-aarch64-linux-gnu build-essential cmake ca-certificates gcc libc6 perl pkg-config
sudo apt-get install -y gcc-aarch64-linux-gnu build-essential cmake libssl-dev ca-certificates gcc libc6 perl pkg-config
build: yarn build --target aarch64-unknown-linux-gnu
# - host: ubuntu-latest
# target: armv7-unknown-linux-gnueabihf
# setup: |
# sudo apt-get update
# sudo apt-get install build-essential pkg-config perl gcc cmake libc6 ca-certificates gcc-arm-linux-gnueabihf -y
# sudo apt-get install build-essential pkg-config perl gcc cmake libc6 ca-certificates libssl-dev gcc-arm-linux-gnueabihf -y
# build: yarn build --target armv7-unknown-linux-gnueabihf
# env:
# CXXFLAGS: '--stdlib=libc++ -L/usr/lib/llvm-18/lib -static'
- host: ubuntu-latest
target: aarch64-linux-android
setup: |
sudo apt-get update
sudo apt-get install -y build-essential cmake
sudo apt-get install -y build-essential cmake libssl-dev
build: yarn build --target aarch64-linux-android
- host: ubuntu-latest
target: armv7-linux-androideabi
setup: |
sudo apt-get update
sudo apt-get install -y build-essential cmake perl libc6 gcc ca-certificates
sudo apt-get install -y build-essential cmake libssl-dev perl libc6 gcc ca-certificates
build: yarn build --target armv7-linux-androideabi
# - host: ubuntu-latest
# target: aarch64-unknown-linux-musl
# setup: |
# sudo apt-get update && sudo apt-get install -y pkg-config clang perl-utils build-essential musl-tools musl-dev ca-certificates gcc g++ libc6 perl
# sudo apt-get update && sudo apt-get install -y pkg-config clang perl-utils build-essential musl-tools musl-dev ca-certificates gcc g++ libc6 perl libssl-dev
# export CC=musl-gcc
# docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-alpine
# build: |
Expand Down

0 comments on commit c326fb6

Please sign in to comment.