Skip to content

Commit

Permalink
roachtest: don't run zfs/ycsb/* on AWS
Browse files Browse the repository at this point in the history
This threw off the nightly roachtest AWS run.

Release note: None
  • Loading branch information
tbg committed Jul 23, 2021
1 parent 42ce127 commit 6efba5b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build/teamcity-nightly-roachtest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,9 @@ case "${CLOUD}" in
PARALLELISM=3
CPUQUOTA=384
if [ -z "${TESTS}" ]; then
TESTS="kv(0|95)|ycsb|tpcc/(headroom/n4cpu16)|tpccbench/(nodes=3/cpu=16)|scbench/randomload/(nodes=3/ops=2000/conc=1)|backup/(KMS/n3cpu4)"
# NB: anchor ycsb to beginning of line to avoid matching `zfs/ycsb/*` which
# isn't supported on AWS at time of writing.
TESTS="kv(0|95)|^ycsb|tpcc/(headroom/n4cpu16)|tpccbench/(nodes=3/cpu=16)|scbench/randomload/(nodes=3/ops=2000/conc=1)|backup/(KMS/n3cpu4)"
fi
;;
*)
Expand Down

0 comments on commit 6efba5b

Please sign in to comment.