gulp.task('clean', ['clean:cdn', 'clean:zip']);
-gulp.task('tag', ['deploy:cdn', 'deploy:zip'], function() {
- if(args.release) {
- version = args.version || version;
- return git.tag(version, 'Release version ' + version, {cwd: '.'}, function (err) {
- if (err) throw err;
- return git.push('origin', version, {cwd: '.', args: '--tags'});
- });
- }
-});
-
-gulp.task('deploy', ['tag']);
-
-// can't run all the verification concurrently until sauce-connect-launcher supports
-// multiple tunnels
-//gulp.task('verify', ['verify:cdn', 'verify:zip]);
+gulp.task('deploy', ['deploy:cdn', 'deploy:zip']);
var common = require('./common');
var gulp = require('gulp');
var fs = require('fs-extra');
-var markdown = require('gulp-markdown');
-var replace = require('gulp-replace');
var modify = require('gulp-modify');
var rsync = require('gulp-rsync');
var gutil = require('gulp-util');
-var _ = require('lodash');
var args = require('yargs').argv;
-var git = require('gulp-git');
-var addsrc = require('gulp-add-src');
var stagingBasePath = config.paths.staging.cdn;
var version = config.version;
done();
}
});
-
-gulp.task('cdn-test:clean', function() {
- fs.removeSync(stagingPath + '/test');
-});
-
-gulp.task('cdn-test:install-dependencies', function() {
- return bower({
- directory: stagingPath,
- cmd: 'install'
- }, [['web-component-tester#2.2.6']]);
-});
-
-config.elements.forEach(function (n) {
- gulp.task('cdn-test:stage:' + n, ['cdn-test:clean', 'cdn-test:install-dependencies'], function(done) {
- fs.mkdirsSync(testPath);
- return git.clone('https://github.com/vaadin/' + n, {cwd: testPath}, function (err) {
- gulp.src(testPath + '/' + n + '/test/**')
- .pipe(replace(/(src|href)=("|')(.*?)\.\.\/\.\.\/(bower_components|node_modules)\/(.*?)\//mg, '$1=$2https://cdn.vaadin.com/vaadin-elements/'+ version + '/$5/'))
- .pipe(replace(/(src|href)=("|')(.*?)\.\.\//mg, '$1=$2https://cdn.vaadin.com/vaadin-elements/'+ version +'/' + n + '/'))
- .pipe(replace(/(src|href)=("|')(.*?)(web-component-tester)\//mg, '$1=$2../../web-component-tester/'))
- .pipe(gulp.dest(testPath + '/' + n + '/test/'));
- done();
- });
- });
-});
-
-gulp.task('cdn-test:stage', _.map(config.elements, function (n) {
- return 'cdn-test:stage:' + n;
-}));
-
-gulp.task('verify:cdn', ['cdn-test:stage'], function(done) {
- if(args.autoRevert) {
- common.checkArguments(['cdnUsername', 'cdnDestination']);
- }
-
- // use unique browser combination because bower,cdn,zip verifications are run
- // at the same time and TeamCity test results will get mixed up if same browsers are used.
- common.testSauce(
- ['target/cdn/' + version + '/test/**/index.html'],
- ['Windows 7/firefox@36'],
- 'vaadin-elements / cdn.vaadin.com / ' + version,
- function(err) {
- common.autoRevert(err, function() {
- gutil.log('Deleting folder ' + args.cdnDestination + version);
-
- require('node-ssh-exec')({
- host: host,
- username: args.cdnUsername,
- privateKey: config.paths.privateKey()
- }, 'rm -rf ' + args.cdnDestination + version, function (error, response) {
- if (error) {
- throw error;
- }
-
- gutil.log(response);
-
- done(err);
- });
-
- }, done);});
-});