Skip to content

RUBY-3694 Use correct CA when verifying OCSP endpoint (2.20.x) #2945

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 15 commits into
base: 2.20-stable
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
268 changes: 70 additions & 198 deletions .evergreen/config.yml

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions .evergreen/config/axes.yml.erb
Original file line number Diff line number Diff line change
Expand Up @@ -184,15 +184,15 @@ axes:
- id: ubuntu2204
display_name: "Ubuntu 22.04"
run_on: ubuntu2204-small
- id: ubuntu2204-arm
display_name: "Ubuntu 22.04 ARM"
run_on: ubuntu2204-arm64-small
- id: ubuntu2004
display_name: "Ubuntu 20.04"
run_on: ubuntu2004-small
- id: rhel8
display_name: "RHEL 8"
run_on: rhel80-small
- id: rhel8-arm
display_name: "RHEL 8 ARM64"
run_on: rhel82-arm64-small
- id: ubuntu1804
display_name: "Ubuntu 18.04"
run_on: ubuntu1804-small

- id: docker-distro
display_name: Docker Distro
Expand Down Expand Up @@ -297,7 +297,7 @@ axes:
values:
- id: mmapv1
display_name: MMAPv1
run_on: rhel80-small
run_on: ubuntu1804-small
variables:
MMAPV1: 'true'

Expand Down
77 changes: 0 additions & 77 deletions .evergreen/config/common.yml.erb
Original file line number Diff line number Diff line change
Expand Up @@ -464,65 +464,6 @@ post:
- func: "upload test results to s3"

task_groups:
- name: serverless_task_group
setup_group_can_fail_task: true
setup_group_timeout_secs: 1800 # 30 minutes
setup_group:
- func: "fetch source"
- func: "create expansions"
- command: ec2.assume_role
params:
role_arn: ${aws_test_secrets_role}
- command: shell.exec
params:
shell: "bash"
script: |
${PREPARE_SHELL}
bash ${DRIVERS_TOOLS}/.evergreen/serverless/setup-secrets.sh
bash ${DRIVERS_TOOLS}/.evergreen/serverless/create-instance.sh
- command: expansions.update
params:
file: serverless-expansion.yml
teardown_task:
- command: shell.exec
params:
script: |
${PREPARE_SHELL}
bash ${DRIVERS_TOOLS}/.evergreen/serverless/delete-instance.sh
- func: "upload test results"
tasks:
- "test-serverless"

- name: serverless_next_task_group
setup_group_can_fail_task: true
setup_group_timeout_secs: 1800 # 30 minutes
setup_group:
- func: "fetch source"
- func: "create expansions"
- command: ec2.assume_role
params:
role_arn: ${aws_test_secrets_role}
- command: shell.exec
params:
shell: "bash"
script: |
${PREPARE_SHELL}
bash ${DRIVERS_TOOLS}/.evergreen/serverless/setup-secrets.sh serverless_next
bash ${DRIVERS_TOOLS}/.evergreen/serverless/create-instance.sh
- command: expansions.update
params:
file: serverless-expansion.yml
teardown_task:
- command: shell.exec
params:
script: |
${PREPARE_SHELL}
bash ${DRIVERS_TOOLS}/.evergreen/serverless/setup-secrets.sh serverless_next
bash ${DRIVERS_TOOLS}/.evergreen/serverless/delete-instance.sh
- func: "upload test results"
tasks:
- "test-serverless"

- name: testatlas_task_group
setup_group_can_fail_task: true
setup_group_timeout_secs: 1800 # 30 minutes
Expand Down Expand Up @@ -752,37 +693,19 @@ tasks:
- name: "test-atlas"
commands:
- func: "run Atlas tests"
- name: "test-serverless"
commands:
- func: "export FLE credentials"
- func: "run serverless tests"
- name: "test-docker"
commands:
- func: "build and test docker image"
- name: "test-mlaunch"
commands:
- func: "run tests"
- name: "driver-bench"
commands:
- func: "run benchmarks"
- name: "test-via-docker"
commands:
- func: "run tests via docker"
- name: "test-kerberos-integration"
commands:
- func: "export Kerberos credentials"
- func: "run Kerberos integration tests"
- name: "test-kerberos"
commands:
- func: "run Kerberos unit tests"
- name: "test-fle"
commands:
- func: "export FLE credentials"
- func: "run tests"
- name: "test-fle-via-docker"
commands:
- func: "export FLE credentials"
- func: "run tests via docker"
- name: "test-aws-auth"
commands:
- func: "export AWS auth credentials"
Expand Down
Loading