Skip to content

Commit 2fc5f4c

Browse files
committed
Fix hypen - machine sizes to modern sizes
1 parent cfcf076 commit 2fc5f4c

File tree

3 files changed

+25
-17
lines changed

3 files changed

+25
-17
lines changed

.evergreen/.evg.yml

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -999,6 +999,7 @@ tasks:
999999
vars:
10001000
VARIANT: gke
10011001

1002+
10021003
- name: "serverless-test-task"
10031004
disable: true # TODO JAVA-5849
10041005
commands:
@@ -1698,6 +1699,8 @@ tasks:
16981699
GCPKMS_CMD="MONGODB_URI=mongodb://localhost:27017 PROVIDER=gcp ./.evergreen/run-fle-on-demand-credential-test.sh" $DRIVERS_TOOLS/.evergreen/csfle/gcpkms/run-command.sh
16991700
17001701
- name: "test-azure-kms-task"
1702+
# Might exceed 1 hour of execution.
1703+
exec_timeout_secs: 7200
17011704
commands:
17021705
- command: shell.exec
17031706
type: "setup"
@@ -1783,7 +1786,7 @@ axes:
17831786
run_on: "rhel80-small"
17841787
- id: "ubuntu"
17851788
display_name: "Ubuntu"
1786-
run_on: "ubuntu2004-small"
1789+
run_on: "ubuntu2204-small"
17871790

17881791
- id: "topology"
17891792
display_name: "Topology"
@@ -2212,14 +2215,14 @@ buildvariants:
22122215

22132216
- name: "test-oidc-azure-variant"
22142217
display_name: "OIDC Auth Azure"
2215-
run_on: ubuntu2204-large
2218+
run_on: ubuntu2204-small
22162219
tasks:
22172220
- name: "test-oidc-azure-task-group"
22182221
batchtime: 20160 # 14 days
22192222

22202223
- name: "test-oidc-gcp-variant"
22212224
display_name: "OIDC Auth GCP"
2222-
run_on: ubuntu2204-large
2225+
run_on: ubuntu2204-small
22232226
tasks:
22242227
- name: "test-oidc-gcp-task-group"
22252228
batchtime: 20160 # 14 days
@@ -2241,7 +2244,7 @@ buildvariants:
22412244

22422245
- name: "atlas-data-lake-test"
22432246
display_name: "Atlas Data Lake test"
2244-
run_on: "ubuntu2004-small"
2247+
run_on: "ubuntu2204-small"
22452248
tasks:
22462249
- name: "atlas-data-lake-task"
22472250

@@ -2253,28 +2256,28 @@ buildvariants:
22532256

22542257
- name: "publish-snapshot"
22552258
display_name: "Publish Snapshot"
2256-
run_on: "ubuntu2004-small"
2259+
run_on: "ubuntu2204-small"
22572260
tasks:
22582261
- name: "publish-snapshot-task"
22592262

22602263
- name: "publish-release"
22612264
display_name: "Publish Release"
2262-
run_on: "ubuntu2004-small"
2265+
run_on: "ubuntu2204-small"
22632266
tasks:
22642267
- name: "publish-release-task"
22652268

22662269
- name: "test-gcp-kms-variant"
22672270
display_name: "GCP KMS"
22682271
run_on:
2269-
- debian11-small
2272+
- debian12-small
22702273
tasks:
22712274
- name: "test-gcp-kms-task-group"
22722275
batchtime: 20160 # Use a batchtime of 14 days as suggested by the CSFLE test README
22732276

22742277
- name: "test-azure-kms-variant"
22752278
display_name: "Azure KMS"
22762279
run_on:
2277-
- debian11-small
2280+
- debian12-small
22782281
tasks:
22792282
- name: "test-azure-kms-task-group"
22802283
batchtime: 20160 # Use a batchtime of 14 days as suggested by the CSFLE test README
@@ -2432,14 +2435,14 @@ buildvariants:
24322435
matrix_spec: { ssl: "nossl", jdk: [ "jdk8", "jdk17", "jdk21" ], version: [ "4.4", "5.0", "6.0", "7.0", "8.0", "latest" ], os: "ubuntu",
24332436
aws-credential-provider: "*" }
24342437
display_name: "MONGODB-AWS Basic Auth test ${version} ${jdk} ${aws-credential-provider}"
2435-
run_on: "ubuntu2004-small"
2438+
run_on: "ubuntu2204-small"
24362439
tasks:
24372440
- name: "aws-auth-test-with-regular-aws-credentials-task"
24382441

24392442
- matrix_name: "aws-ec2-auth-test"
24402443
matrix_spec: { ssl: "nossl", jdk: [ "jdk21" ], version: [ "7.0" ], os: "ubuntu", aws-credential-provider: "*" }
24412444
display_name: "MONGODB-AWS Advanced Auth test ${version} ${jdk} ${aws-credential-provider}"
2442-
run_on: "ubuntu2004-small"
2445+
run_on: "ubuntu2204-small"
24432446
tasks:
24442447
- name: "aws-auth-test-with-aws-EC2-credentials-task"
24452448
- name: "aws-auth-test-with-assume-role-credentials-task"
@@ -2451,7 +2454,7 @@ buildvariants:
24512454
matrix_spec: { ssl: "nossl", auth: "noauth", jdk: "jdk21", version: [ "5.0", "6.0", "7.0", "8.0", "latest" ], topology: "standalone",
24522455
os: "linux" }
24532456
display_name: "Accept API Version 2 ${version}"
2454-
run_on: "ubuntu2004-small"
2457+
run_on: "ubuntu2204-small"
24552458
tasks:
24562459
- name: "accept-api-version-2-test-task"
24572460

.evergreen/run-fle-on-demand-credential-test.sh

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,24 @@ fi
2222

2323
export PROVIDER=${PROVIDER}
2424

25+
echo "Running gradle version"
26+
./gradlew -version
27+
28+
echo "Running gradle classes compile for driver-sync and driver-reactive-streams"
29+
./gradlew --parallel --build-cache --stacktrace --info \
30+
driver-sync:classes driver-reactive-streams:classes
31+
32+
echo "Running driver-sync tests"
2533
./gradlew -Dorg.mongodb.test.uri="${MONGODB_URI}" \
2634
-Dorg.mongodb.test.fle.on.demand.credential.test.success.enabled=true \
27-
--stacktrace --debug --info driver-sync:test --tests ClientSideEncryptionOnDemandCredentialsTest
35+
--build-cache--stacktrace --info driver-sync:test --tests ClientSideEncryptionOnDemandCredentialsTest
2836
first=$?
2937
echo $first
3038

39+
echo "Running driver-reactive-streams tests"
3140
./gradlew -Dorg.mongodb.test.uri="${MONGODB_URI}" \
3241
-Dorg.mongodb.test.fle.on.demand.credential.test.success.enabled=true \
33-
--stacktrace --debug --info driver-reactive-streams:test --tests ClientSideEncryptionOnDemandCredentialsTest
42+
--build-cache --stacktrace --info driver-reactive-streams:test --tests ClientSideEncryptionOnDemandCredentialsTest
3443
second=$?
3544
echo $second
3645

.evergreen/run-mongodb-oidc-test.sh

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,6 @@ ADMIN_URI=${MONGODB_URI/$TO_REPLACE/$REPLACEMENT}
5252
echo "Running gradle version"
5353
./gradlew -version
5454

55-
echo "Running gradle classes compile for driver-core"
56-
./gradlew --parallel --stacktrace --info \
57-
driver-core:compileJava driver-core:compileTestGroovy
58-
5955
echo "Running gradle classes compile for driver-sync and driver-reactive-streams"
6056
./gradlew --parallel --stacktrace --info \
6157
driver-sync:classes driver-reactive-streams:classes

0 commit comments

Comments
 (0)