Skip to content
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

Add nightly test runs to evergreen config #6830

Merged
merged 5 commits into from
Jul 28, 2023
Merged
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
23 changes: 6 additions & 17 deletions evergreen/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -654,7 +654,8 @@ tasks:
script: ../tools/run-tests-on-exfat.sh

- name: valgrind
exec_timeout_secs: 18000
exec_timeout_secs: 14400
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I assume you checked the actual test run and this is enough

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The duration for the previous runs (on commit to master) has been just over an hour.

tags: [ "for_nightly_tests" ]
commands:
- func: "fetch source"
- func: "fetch binaries"
Expand Down Expand Up @@ -773,6 +774,7 @@ tasks:
display_name: bloaty-results

- name: long-running-core-tests
tags: [ "for_nightly_tests" ]
commands:
- func: "run tests"
# The long-running tests can take a really long time on Windows, so we give the test up to 4
Expand Down Expand Up @@ -1002,6 +1004,7 @@ tasks:
exit 1

- name: fuzzer
tags: [ "for_nightly_tests" ]
commands:
- command: shell.exec
params:
Expand All @@ -1023,19 +1026,6 @@ task_groups:
tasks:
- core-tests

- name: core_sync_tests_group
setup_group_can_fail_task: true
setup_group:
- func: "fetch source"
- func: "fetch binaries"
teardown_task:
- func: "upload test results"
timeout:
- func: "run hang analyzer"
tasks:
- compile
- .test_suite

# Runs object-store-tests against baas running on remote host
- name: compile_test_and_package
max_hosts: 1
Expand Down Expand Up @@ -1158,7 +1148,7 @@ buildvariants:
- name: lint
distros:
- ubuntu2204-small
- name: core_sync_tests_group
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

core_sync_tests_group does not seem to be used anymore

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Removed the task group

- name: compile_test

- name: ubuntu2004-no-session-multiplexing
display_name: "Ubuntu 20.04 x86_64 (Sync Multiplexing Disabled)"
Expand Down Expand Up @@ -1296,7 +1286,6 @@ buildvariants:
enable_fuzzer: On
tasks:
- name: fuzzer-tests
cron: "@daily"
patchable: true

- name: rhel70
Expand All @@ -1315,7 +1304,7 @@ buildvariants:
- name: compile_test_and_package

- name: ubuntu-valgrind
display_name: "Ubuntu 2204 Valgrind"
display_name: "Ubuntu 22.04 x86_64 (Valgrind)"
run_on: ubuntu2204-large
expansions:
cmake_url: "https://s3.amazonaws.com/static.realm.io/evergreen-assets/cmake-3.20.3-linux-x86_64.tar.gz"
Expand Down