File tree Expand file tree Collapse file tree 4 files changed +20
-9
lines changed Expand file tree Collapse file tree 4 files changed +20
-9
lines changed Original file line number Diff line number Diff line change @@ -32,8 +32,8 @@ addons:
32
32
before_script :
33
33
- du -sh ./node_modules ./bower_components/ || true
34
34
- " ./scripts/travis/before_build.sh"
35
- script : skip
36
- # - "./scripts/travis/build.sh"
35
+ script :
36
+ - " ./scripts/travis/build.sh"
37
37
after_script :
38
38
- " ./scripts/travis/tear_down_browser_provider.sh"
39
39
- " ./scripts/travis/print_logs.sh"
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 2
2
3
3
set -e
4
4
5
+ DISTTAG=$( cat package.json | jq ' .distTag' | tr -d \" )
6
+
7
+ echo $TRAVIS_TAG
8
+ echo $DISTTAG
9
+
10
+ if [[ $TRAVIS_TAG = ' ' && $DISTTAG = " next" ]]; then
11
+ echo " read from json" ;
12
+ fi
13
+
5
14
yarn global add grunt-cli@1.2.0
6
15
7
16
mkdir -p $LOGS_DIR
Original file line number Diff line number Diff line change 5
5
export BROWSER_STACK_ACCESS_KEY=` echo $BROWSER_STACK_ACCESS_KEY | rev`
6
6
export SAUCE_ACCESS_KEY=` echo $SAUCE_ACCESS_KEY | rev`
7
7
8
+ DISTTAG=$( cat package.json | jq ' .distTag' )
9
+
10
+ echo $TRAVIS_TAG
11
+ echo $DISTTAG
12
+
13
+ if [[ $DISTTAG = " next" ]]; then
14
+ echo " read from json" ;
15
+ fi
16
+
8
17
if [ " $JOB " == " ci-checks" ]; then
9
18
grunt ci-checks
10
19
elif [ " $JOB " == " unit" ]; then
You can’t perform that action at this time.
0 commit comments