mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
[ci] Removes all verbose flags (#110842)
Signed-off-by: Tyler Smalley <tyler.smalley@elastic.co>
This commit is contained in:
parent
e25c9dfece
commit
9850414b92
7 changed files with 8 additions and 10 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue