From 7a81ac67a2cf23a8b87e2e4366a9767dced3caa5 Mon Sep 17 00:00:00 2001 From: Alexander Kyte Date: Mon, 26 Nov 2018 15:38:15 -0500 Subject: [PATCH] [bench] Revert hardcoding of microbenchmarks to run-jenkins (#11787) --- scripts/ci/run-jenkins.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/scripts/ci/run-jenkins.sh b/scripts/ci/run-jenkins.sh index 38f3caa6c76..fb1d88d8217 100755 --- a/scripts/ci/run-jenkins.sh +++ b/scripts/ci/run-jenkins.sh @@ -7,8 +7,6 @@ export CI_PR=$([[ ${CI_TAGS} == *'pull-request'* ]] && echo 1 || true) export CI_CPU_COUNT=$(getconf _NPROCESSORS_ONLN || echo 4) export TEST_HARNESS_VERBOSE=1 -export CI_TAGS="$CI_TAGS,microbench" - # workaround for acceptance-tests submodules leaving files behind since Jenkins only does "git clean -xdf" (no second 'f') # which won't clean untracked .git repos (remove once https://github.com/jenkinsci/git-plugin/pull/449 is available) for dir in acceptance-tests/external/*; do [ -d "$dir" ] && (cd "$dir" && echo "Cleaning $dir" && git clean -xdff); done -- 2.11.4.GIT