mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
* [mocha] run tests with mocha script, remove grunt-simple-mocha * [ci] force colored output * [ci] disable color when reading the yarn bin * [dev/build/exec] support tooling log having its own chalk * [dev/mocha] avoid changing the cwd of the process * [dev/mocha] only match files, speed up negative matches * [cli/serve/test] strip ansi control characters from logs * [ci] disable color in all `yarn bin` invocations * [dev/mocha] cleanup old runInBand check * [dev/mocha] enable gloabl leak checks
10 lines
323 B
Bash
Executable file
10 lines
323 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
source "$(dirname $0)/../../src/dev/ci_setup/setup.sh"
|
|
source "$(dirname $0)/../../src/dev/ci_setup/git_setup.sh"
|
|
source "$(dirname $0)/../../src/dev/ci_setup/java_setup.sh"
|
|
|
|
node scripts/build --release --debug --oss;
|
|
|
|
xvfb-run "$(FORCE_COLOR=0 yarn bin)/grunt" jenkins:selenium --from=source;
|