Skip to content
This repository has been archived by the owner on Sep 5, 2020. It is now read-only.

Commit

Permalink
also build wallet if on master branch
Browse files Browse the repository at this point in the history
  • Loading branch information
Luca Zeug committed Jan 20, 2017
1 parent 253e6dd commit 7795309
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,11 @@ install:
script:
- if [[ $TRAVIS_BRANCH != "master" ]]; then unset CSC_LINK CSC_KEY_PASSWORD; fi # disable macOS code-signing (production certificate) on develop branch
- travis_wait 60 gulp mist --platform $GULP_PLATFORM
- if [[ $TRAVIS_BRANCH == "master" ]]; then travis_wait 60 gulp wallet --platform $GULP_PLATFORM; fi # also build wallet if on master branch

after_success:
- gulp mist-checksums --platform $GULP_PLATFORM
- if [[ $TRAVIS_BRANCH == "master" ]]; then gulp wallet-checksums --platform $GULP_PLATFORM; fi

notifications:
webhooks:
Expand Down
5 changes: 0 additions & 5 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -457,11 +457,6 @@ gulp.task('wallet', (cb) => {
runSeq('set-variables-wallet', 'taskQueue', cb);
});

// CI task
gulp.task('ci', (cb) => {
runSeq('set-variables-mist', 'taskQueue', 'set-variables-wallet', 'taskQueue', cb);
});

// WALLET task
gulp.task('mist-checksums', (cb) => {
runSeq('set-variables-mist', 'get-release-checksums', cb);
Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@
"url": "https://github.com/ethereum/mist.git"
},
"scripts": {
"postinstall": "cd interface && yarn",
"ci": "gulp --platform=linux"
"postinstall": "cd interface && yarn"
},
"main": "main.js",
"dependencies": {
Expand Down

0 comments on commit 7795309

Please sign in to comment.