mirror of
https://github.com/mongodb/mongo.git
synced 2024-12-01 09:32:32 +01:00
16 lines
397 B
Bash
16 lines
397 B
Bash
|
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 && pwd)"
|
||
|
. "$DIR/../prelude.sh"
|
||
|
|
||
|
cd src
|
||
|
|
||
|
set -o verbose
|
||
|
set -o errexit
|
||
|
activate_venv
|
||
|
$python buildscripts/evergreen_task_timeout.py \
|
||
|
--task-name ${task_name} \
|
||
|
--build-variant ${build_variant} \
|
||
|
--evg-alias '${alias}' \
|
||
|
--timeout ${timeout_secs} \
|
||
|
--exec-timeout ${exec_timeout_secs} \
|
||
|
--out-file task_timeout_expansions.yml
|