mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
* [dev/ci_setup] generalize jenkins_setup script for other CI environments * [dev/ci_setup] accept more general `CACHE_DIR` env arg * [dev/ci_setup] node.js install might not be invalid
8 lines
167 B
Bash
Executable file
8 lines
167 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
source "$(dirname $0)/../../src/dev/ci_setup/setup.sh"
|
|
|
|
"$(npm bin)/grunt" build --release;
|
|
|
|
xvfb-run "$(npm bin)/grunt" jenkins:selenium;
|