Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 37 additions & 2 deletions .ng-dev/dx-perf-workflows.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,49 @@
workflows:
build-cli:
name: Build cli
name: '@angular/cli build'
prepare:
- bazel clean
workflow:
- bazel build //packages/angular/cli:npm_package

angular-build-integration:
name: Angular Build Integration
name: '@angular/build integration'
disabled: true
prepare:
- bazel clean
workflow:
- bazel test //packages/angular/build:integration_tests

modules-builder-tests:
name: '@ngtools/webpack test'
prepare:
- bazel clean
workflow:
- bazel test //packages/ngtools/webpack:webpack_test

devkit-core-tests:
name: '@angular/devkit/core tests'
prepare:
- bazel clean
workflow:
- bazel test //packages/angular_devkit/core:core_test

devkit-core-tests-rerun:
name: '@angular/devkit/core return test'
prepare:
- bazel clean
workflow:
- bazel test //packages/angular_devkit/core:core_test
# Add a single line to the beginning of a file to trigger a rebuild/retest
- sed -i '1i // comment' packages/angular_devkit/core/src/workspace/core_spec.ts
- bazel test //packages/angular_devkit/core:core_test
cleanup:
# Remove the single line added
- sed -i '1d' packages/angular_devkit/core/src/workspace/core_spec.ts

build-unit-tests:
name: '@angular/build tests'
prepare:
- bazel clean
workflow:
- bazel test //packages/angular/build:unit_tests
Loading