diff options
author | Zituo Jin <zituo.jin@mongodb.com> | 2021-10-07 19:05:06 +0000 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2021-10-07 20:26:53 +0000 |
commit | a4f2a067bd892aa2d1b0297bdb04dd40b7eebc5c (patch) | |
tree | 6a996bdaf35c9eff90357376a9787d35bcfaec9d /evergreen | |
parent | d5010cf9e5b712f96c1a2c6539e303687b202f8a (diff) | |
download | mongo-a4f2a067bd892aa2d1b0297bdb04dd40b7eebc5c.tar.gz |
SERVER-60345 Remove STM Hourly Cron job
Diffstat (limited to 'evergreen')
-rw-r--r-- | evergreen/gen_patch_test_tags.sh | 2 | ||||
-rw-r--r-- | evergreen/update_patch_failure_history.sh | 19 |
2 files changed, 1 insertions, 20 deletions
diff --git a/evergreen/gen_patch_test_tags.sh b/evergreen/gen_patch_test_tags.sh index b473cfc2dbc..d1656f6475e 100644 --- a/evergreen/gen_patch_test_tags.sh +++ b/evergreen/gen_patch_test_tags.sh @@ -17,7 +17,7 @@ git clone git@github.com:10gen/coredb-patchbuild-optimizer.git pushd coredb-patchbuild-optimizer # Reusing bfsuggestion's password here to avoid having to # go through the process of adding a new Evergreen project expansion. -$python tagfilegenerator.py "${bfsuggestion_password}" +$python tagfilegenerator.py "${coredb_patchbuild_optimizer_password}" mv failedtesttags .. popd diff --git a/evergreen/update_patch_failure_history.sh b/evergreen/update_patch_failure_history.sh deleted file mode 100644 index 697fb55a3d8..00000000000 --- a/evergreen/update_patch_failure_history.sh +++ /dev/null @@ -1,19 +0,0 @@ -DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" > /dev/null 2>&1 && pwd)" -. "$DIR/prelude.sh" - -cd src - -set -o errexit - -activate_venv -git clone git@github.com:10gen/coredb-patchbuild-optimizer.git - -pushd coredb-patchbuild-optimizer -# Copy the Evergreen config file into the working directory. -cp ../.evergreen.yml . - -$python -m pip install tornado==6.1 motor==2.4 -# Reusing bfsuggestion's password here to avoid having to -# go through the process of adding a new Evergreen project expansion. -$python -m patchbuild_optimizer "${bfsuggestion_password}" -popd |