Skip to content

Commit 6ffae55

Browse files
authored
BUILD-17329 Updated ECS Task (#1387)
1 parent ed3ae41 commit 6ffae55

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

.evergreen/config.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2280,9 +2280,9 @@ axes:
22802280
display_name: "Ubuntu 22.04"
22812281
run_on: ubuntu2204-small
22822282
batchtime: 10080 # 7 days
2283-
- id: ubuntu-18.04
2284-
display_name: "Ubuntu 18.04"
2285-
run_on: ubuntu1804-small
2283+
- id: ubuntu-20.04
2284+
display_name: "Ubuntu 20.04"
2285+
run_on: ubuntu2004-small
22862286
batchtime: 10080 # 7 days
22872287
- id: rhel83-zseries
22882288
display_name: "RHEL 8.3 (zSeries)"
@@ -3115,8 +3115,8 @@ buildvariants:
31153115

31163116
- matrix_name: "aws-auth-test"
31173117
matrix_spec:
3118-
platform: [ubuntu-18.04]
3119-
python-version: ["3.7"]
3118+
platform: [ubuntu-20.04]
3119+
python-version: ["3.9"]
31203120
display_name: "MONGODB-AWS Auth ${platform} ${python-version}"
31213121
tasks:
31223122
- name: "aws-auth-test-4.4"

.evergreen/run-mongodb-aws-ecs-test.sh

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,15 @@ fi
2020
# Now we can safely enable xtrace
2121
set -o xtrace
2222

23-
# Install python3.7 with pip.
23+
# Install python with pip.
24+
PYTHON_VER="python3.9"
2425
apt-get update
25-
apt-get install python3.7 python3-pip build-essential python3.7-dev -y
26+
apt-get install $PYTHON_VER python3-pip build-essential $PYTHON_VER-dev -y
2627

27-
export PYTHON_BINARY="python3.7"
28+
export PYTHON_BINARY=$PYTHON_VER
2829
export TEST_AUTH_AWS=1
2930
export AUTH="auth"
3031
export SET_XTRACE_ON=1
3132
cd src
32-
python3.7 -m pip install -q --user tox
33+
$PYTHON_BINARY -m pip install -q --user tox
3334
bash .evergreen/tox.sh -m test-eg

0 commit comments

Comments
 (0)