Skip to content

Commit

Permalink
install libssl1.1 in ci
Browse files Browse the repository at this point in the history
Ubuntu 24.04 doesn't have libssl1.1 which is needed by mongo-memory-server

Issue: S3UTILS-184
  • Loading branch information
Kerkesni committed Jan 14, 2025
1 parent b66c7f4 commit e82f3ea
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,12 @@ jobs:
node-version: '16'
cache: 'yarn'
- run: sudo apt-get update -q
# Ubuntu 24.04 doesn't have libssl1.1 which is needed by mongo-memory-server
- name: install libssl1.1
run: |
mkdir -p ~/ssl && cd ~/ssl
wget -nc https://ftp.debian.org/debian/pool/main/o/openssl/libssl1.1_1.1.1w-0+deb11u1_amd64.deb
sudo dpkg -i libssl1.1_1.1.1w-0+deb11u1_amd64.deb
- run: yarn --network-concurrency 1
- run: yarn --silent lint -- --max-warnings 0
- run: yarn --silent test:unit
Expand Down

0 comments on commit e82f3ea

Please sign in to comment.