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

Commit f8ea87c

Browse files
authored
Merge pull request #3766 from ethereum/artifact-uploads
Refactoring upload-queue task; Prettier code style changes
2 parents c39d233 + d50cf3e commit f8ea87c

File tree

2 files changed

+2
-9
lines changed

2 files changed

+2
-9
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ script:
9595
- if [[ $GULP_PLATFORM != "win" ]]; then gulp test; fi
9696

9797
after_success:
98-
- if [[ $TRAVIS_BRANCH == "master" ]]; then gulp uploadQueue --$GULP_PLATFORM && gulp uploadQueue --wallet --$GULP_PLATFORM; fi
98+
- if [[ $TRAVIS_BRANCH == "master" ]]; then gulp upload-queue --$GULP_PLATFORM && gulp upload-queue --wallet --$GULP_PLATFORM; fi
9999

100100

101101
notifications:

gulpfile.js

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -66,14 +66,7 @@ exports.options = options;
6666
// import gulp tasks
6767
require('require-dir')('./gulpTasks');
6868

69-
gulp.task('uploadQueue', cb => {
70-
const tasks = [];
71-
72-
tasks.push('checksums');
73-
tasks.push('upload-binaries');
74-
75-
runSeq.apply(null, _.flatten([tasks, cb]));
76-
});
69+
gulp.task('upload-queue', gulp.series('checksums', 'upload-binaries'));
7770

7871
const skipTasks = options.skipTasks.replace(/\s/g, '').split(',');
7972
const tasks = [

0 commit comments

Comments
 (0)