mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
[ci] source the setup script instead of executing it
This commit is contained in:
parent
5588983386
commit
8adaecb9be
4 changed files with 5 additions and 10 deletions
|
@ -37,5 +37,3 @@ if [ -z "$(npm bin)" ]; then
|
|||
echo "npm does not know where it stores executables..... huh??"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
export GRUNT="$(npm bin)/grunt"
|
|
@ -1,7 +1,6 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
set -e
|
||||
source "$(dirname $0)/_jenkins_setup.sh"
|
||||
|
||||
"$(dirname $0)/jenkins_setup.sh"
|
||||
|
||||
"$GRUNT" build;
|
||||
"$(npm bin)/grunt" build;
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
set -e
|
||||
|
||||
"$(dirname $0)/jenkins_setup.sh"
|
||||
source "$(dirname $0)/_jenkins_setup.sh"
|
||||
|
||||
xvfb-run "$(npm bin)/grunt" jenkins:selenium;
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
set -e
|
||||
source "$(dirname $0)/_jenkins_setup.sh"
|
||||
|
||||
"$(dirname $0)/jenkins_setup.sh"
|
||||
|
||||
xvfb-run "$GRUNT" jenkins:unit;
|
||||
xvfb-run "$(npm bin)/grunt" jenkins:unit;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue