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

WX-1103 Accelerate TES CI #7130

Merged
merged 9 commits into from
May 10, 2023
Merged
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
2 changes: 1 addition & 1 deletion centaur/test_cromwell.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Arguments:
INITIAL_DIR=$(pwd)
RUN_DIR=$(pwd)
LOG_DIR="${RUN_DIR}"/logs
TEST_THREAD_COUNT=16
TEST_THREAD_COUNT=16 # Note that most users of this script override this value
CENTAUR_SBT_COVERAGE=false
CROMWELL_TIMEOUT=10s
SUITE=""
Expand Down
5 changes: 3 additions & 2 deletions src/ci/bin/testCentaurTes.sh
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,10 @@ startup_funnel
# read_file_limits: Fail only in Travis for unknown reason (Note that the draft 3 version does not fail)
# docker_hash_dockerhub: Prone to request rate limiting by Dockerhub

# Limiting Centaur to 4 threads here in order to try to prevent exceeding the OS's max open files limit: BA-6153
# Setting threads to 8 upon moving from Travis to Github Actions. If we run into problems with
# exceeding the OS's max open files limit, reduce. See BA-6153.
cromwell::build::run_centaur \
-p 2 \
-p 8 \
-e docker_hash_dockerhub \
-e call_cache_capoeira_local \
-e draft3_call_cache_capoeira_local \
Expand Down