Skip to content

Commit

Permalink
Remove "latest" from testing matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
jyemin committed Apr 5, 2023
1 parent cd2b814 commit 998cb96
Showing 1 changed file with 8 additions and 15 deletions.
23 changes: 8 additions & 15 deletions .evergreen/.evg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ functions:
- command: git.get_project
params:
directory: "src"
# Applies the subitted patch, if any
# Applies the submitted patch, if any
# Deprecated. Should be removed. But still needed for certain agents (ZAP)
- command: git.apply_patch
# Make an evergreen exapanstion file with dynamic values
# Make an evergreen expansion file with dynamic values
- command: shell.exec
params:
working_dir: "src"
Expand All @@ -41,7 +41,7 @@ functions:
if [ "${is_patch}" = "true" ]; then
CURRENT_VERSION=$(git describe)-patch-${version_id}
else
CURRENT_VERSION=latest
CURRENT_VERSION=5.0
fi
export DRIVERS_TOOLS="$(pwd)/../drivers-tools"
Expand Down Expand Up @@ -431,13 +431,6 @@ axes:
- id: version
display_name: MongoDB Version
values:
- id: "latest"
display_name: "latest"
variables:
VERSION: "latest"
# Multiple mongos instances can be specified in the connection string
# for this version.
SAFE_FOR_MULTI_MONGOS: true
- id: "5.0"
display_name: "5.0"
variables:
Expand Down Expand Up @@ -588,21 +581,21 @@ buildvariants:
- name: "static-analysis"

- matrix_name: "tests-zlib-compression"
matrix_spec: { compressor : "zlib", auth: "noauth", ssl: "nossl", jdk: "jdk6", version: ["3.6", "4.0", "4.2", "4.4", "5.0", "latest"], topology: "standalone", os: "linux" }
matrix_spec: { compressor : "zlib", auth: "noauth", ssl: "nossl", jdk: "jdk6", version: ["3.6", "4.0", "4.2", "4.4", "5.0"], topology: "standalone", os: "linux" }
display_name: "${version} ${compressor} ${topology} ${auth} ${ssl} ${jdk} ${os} "
tags: ["tests-variant"]
tasks:
- name: "test"

- matrix_name: "tests-snappy-compression"
matrix_spec: { compressor : "snappy", auth: "noauth", ssl: "nossl", jdk: "jdk7", version: ["3.4", "3.6", "4.0", "4.2", "4.4", "5.0", "latest"], topology: "standalone", os: "linux" }
matrix_spec: { compressor : "snappy", auth: "noauth", ssl: "nossl", jdk: "jdk7", version: ["3.4", "3.6", "4.0", "4.2", "4.4", "5.0"], topology: "standalone", os: "linux" }
display_name: "${version} ${compressor} ${topology} ${auth} ${ssl} ${jdk} ${os} "
tags: ["tests-variant"]
tasks:
- name: "test"

- matrix_name: "tests-zstd-compression"
matrix_spec: { compressor : "zstd", auth: "noauth", ssl: "nossl", jdk: "jdk7", version: ["4.2", "4.4", "5.0", "latest"], topology: "standalone", os: "linux" }
matrix_spec: { compressor : "zstd", auth: "noauth", ssl: "nossl", jdk: "jdk7", version: ["4.2", "4.4", "5.0"], topology: "standalone", os: "linux" }
display_name: "${version} ${compressor} ${topology} ${auth} ${ssl} ${jdk} ${os} "
tags: ["tests-variant"]
tasks:
Expand All @@ -617,14 +610,14 @@ buildvariants:

- matrix_name: "tests-jdk6-secure"
matrix_spec: { auth: "auth", ssl: "ssl", jdk: "jdk6", version: "*", topology: "*", os: "linux" }
exclude_spec: { auth: "auth", ssl: "ssl", jdk: "jdk6", version: ["4.0", "4.2", "4.4", "5.0", "latest"], topology: "*", os: "linux" }
exclude_spec: { auth: "auth", ssl: "ssl", jdk: "jdk6", version: ["4.0", "4.2", "4.4", "5.0"], topology: "*", os: "linux" }
display_name: "${version} ${topology} ${auth} ${ssl} ${jdk} ${os} "
tags: ["tests-variant"]
tasks:
- name: "test"

- matrix_name: "tests-jdk-newer-secure"
matrix_spec: { auth: "auth", ssl: "ssl", jdk: ["jdk8", "jdk11"], version: ["4.0", "4.2", "4.4", "5.0", "latest"], topology: "*", os: "linux" }
matrix_spec: { auth: "auth", ssl: "ssl", jdk: ["jdk8", "jdk11"], version: ["4.0", "4.2", "4.4", "5.0"], topology: "*", os: "linux" }
display_name: "${version} ${topology} ${auth} ${ssl} ${jdk} ${os} "
tags: ["tests-variant"]
tasks:
Expand Down

0 comments on commit 998cb96

Please sign in to comment.