Skip to content

Commit a485f2a

Browse files
committed
fix: install specific curl packages
1 parent bd95c2c commit a485f2a

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

Diff for: .evergreen.yml

+4
Original file line numberDiff line numberDiff line change
@@ -3598,6 +3598,10 @@ functions:
35983598
{
35993599
source .evergreen/setup-env.sh
36003600
(cd scripts/docker && docker build -t ubuntu24.04-xvfb -f ubuntu24.04-xvfb.Dockerfile .)
3601+
apt list --installed
3602+
sudo apt-get update
3603+
sudo apt-get install -y curl=7.68.0-1ubuntu2.22 libcurl4=7.68.0-1ubuntu2.22 libcurl4-openssl-dev=7.68.0-1ubuntu2.22
3604+
36013605
docker run \
36023606
--rm -v $PWD:/tmp/build ubuntu24.04-xvfb \
36033607
-c 'cd /tmp/build && ./testing/test-vscode.sh'

Diff for: testing/test-vscode.sh

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#!/bin/sh
22
set -x
33
set -e
4+
45
# just to make sure: we are in the mongosh root dir
56
test -x packages && grep -q '"name": "mongosh"' package.json
67
npm -v

0 commit comments

Comments
 (0)