Skip to content

Commit 3379eeb

Browse files
committed
chore(travis): run bower install twice to make sure it does
This is a work-around for Bower/Node.js issue (bower/bower#830). We run `bower install` twice, as the probability of failing twice in a row is very low. I had to extract `bower` task out of the package, because we need to run `bower install` before building and `grunt bower` can fail, which takes down the whole process and therefore it wouldn't build.
1 parent 475eddf commit 3379eeb

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.travis.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ before_script:
1313
- mkdir -p $LOGS_DIR
1414
- ./lib/sauce/sauce_connect_setup.sh
1515
- npm install -g grunt-cli
16-
- grunt package
16+
- grunt bower
17+
- grunt bower
18+
- grunt package-without-bower
1719
- grunt ci-checks
1820
- ./lib/sauce/sauce_connect_block.sh
1921

Gruntfile.js

+1
Original file line numberDiff line numberDiff line change
@@ -261,6 +261,7 @@ module.exports = function(grunt) {
261261
grunt.registerTask('minify', ['bower','clean', 'build', 'minall']);
262262
grunt.registerTask('webserver', ['connect:devserver']);
263263
grunt.registerTask('package', ['bower','clean', 'buildall', 'minall', 'collect-errors', 'docs', 'copy', 'write', 'compress']);
264+
grunt.registerTask('package-without-bower', ['clean', 'buildall', 'minall', 'collect-errors', 'docs', 'copy', 'write', 'compress']);
264265
grunt.registerTask('ci-checks', ['ddescribe-iit', 'merge-conflict']);
265266
grunt.registerTask('default', ['package']);
266267
};

0 commit comments

Comments
 (0)