Revision 56e085f3f840290440a7fc32911160c21f231ba5 authored by Kristiyan Kostadinov on 10 October 2023, 16:57:09 UTC, committed by Andrew Kushnir on 25 April 2024, 15:48:45 UTC
Based on recent discussions, these changes remove the Windows CI check because it has been too flaky for too long. Furthermore, we've concluded that the simulated file system in the compiler tests already catches the same set of bugs as running the tests on a real Windows system.

PR Close #52140

(cherry picked from commit 5a969e06b7cc5971aaf9fb7fa5aab44561eb9872)

PR Close #55527
1 parent 4127b29
Raw File
gulpfile.js
/**
 * @license
 * Copyright Google LLC 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
 */

'use strict';

const gulp = require('gulp');

// See `tools/gulp-tasks/README.md` for information about task loading.
function loadTask(fileName, taskName) {
  const taskModule = require('./tools/gulp-tasks/' + fileName);
  const task = taskName ? taskModule[taskName] : taskModule;
  return task(gulp);
}


gulp.task('changelog:zonejs', loadTask('changelog-zonejs'));
back to top