[ci] Removes all verbose flags (#110842)

Signed-off-by: Tyler Smalley <tyler.smalley@elastic.co>
This commit is contained in:
Tyler Smalley 2021-09-01 12:05:28 -07:00 committed by GitHub
parent e25c9dfece
commit 9850414b92
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 8 additions and 10 deletions

View file

@ -5,7 +5,7 @@ set -euo pipefail
source .buildkite/scripts/common/util.sh
echo "--- yarn install and bootstrap"
yarn kbn bootstrap --verbose
yarn kbn bootstrap
###
### upload ts-refs-cache artifacts as quickly as possible so they are available for download

View file

@ -18,8 +18,7 @@ node scripts/build_kibana_platform_plugins \
--scan-dir "$XPACK_DIR/test/licensing_plugin/plugins" \
--scan-dir "$XPACK_DIR/test/usage_collection/plugins" \
--scan-dir "$XPACK_DIR/test/security_functional/fixtures/common" \
--scan-dir "$XPACK_DIR/examples" \
--verbose
--scan-dir "$XPACK_DIR/examples"
echo "--- Archive built plugins"
shopt -s globstar

View file

@ -7,7 +7,7 @@ If you want, you can still manually install the pre-commit hook locally by runni
!!!!!!!!!!!!!!!!!!!!!!!!!!!
"
node scripts/precommit_hook.js --ref HEAD~1..HEAD --max-files 200 --verbose
node scripts/precommit_hook.js --ref HEAD~1..HEAD --max-files 200
}
run_quick_commit_checks

View file

@ -28,10 +28,10 @@ if [[ -z "$CODE_COVERAGE" ]] ; then
./test/scripts/checks/test_hardening.sh
else
echo " -> Running jest tests with coverage"
node scripts/jest --ci --verbose --maxWorkers=8 --coverage || true;
node scripts/jest --ci --maxWorkers=8 --coverage || true;
echo " -> Running jest integration tests with coverage"
node scripts/jest_integration --ci --verbose --coverage || true;
node scripts/jest_integration --ci --coverage || true;
echo " -> Combine code coverage in a single report"
yarn nyc report --nycrc-path src/dev/code_coverage/nyc_config/nyc.jest.config.js

View file

@ -16,5 +16,4 @@ node scripts/build_kibana_platform_plugins \
--scan-dir "$XPACK_DIR/test/security_functional/fixtures/common" \
--scan-dir "$KIBANA_DIR/examples" \
--scan-dir "$XPACK_DIR/examples" \
--workers 12 \
--verbose
--workers 12

View file

@ -3,4 +3,4 @@
source src/dev/ci_setup/setup_env.sh
checks-reporter-with-killswitch "Jest Integration Tests" \
node scripts/jest_integration --ci --verbose
node scripts/jest_integration --ci

View file

@ -3,4 +3,4 @@
source src/dev/ci_setup/setup_env.sh
checks-reporter-with-killswitch "Jest Unit Tests" \
node scripts/jest --ci --verbose --maxWorkers=6
node scripts/jest --ci --maxWorkers=6