ci: remove travis ci setup (#27937)

we no longer need it... yay!!!

PR Close #27937
This commit is contained in:
Paul Gschwendtner
2019-01-05 21:09:34 +01:00
committed by Andrew Kushnir
parent 21b875d4d0
commit cc35feb445
15 changed files with 2 additions and 592 deletions

View File

@ -1,21 +0,0 @@
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
// tslint:disable:no-console
module.exports = function travisFoldStart(name) {
if (process.env.TRAVIS) console.log('travis_fold:start:' + encode(name));
return function travisFoldEnd() {
if (process.env.TRAVIS) console.log('travis_fold:end:' + encode(name));
};
};
function encode(name) {
return name.replace(/\W/g, '-').replace(/-$/, '');
}