-
Notifications
You must be signed in to change notification settings - Fork 11.9k
Expand file tree
/
Copy pathdx-perf-workflows.yml
More file actions
49 lines (44 loc) · 1.32 KB
/
dx-perf-workflows.yml
File metadata and controls
49 lines (44 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
workflows:
build-cli:
name: '@angular/cli build'
prepare:
- bazel clean
workflow:
- bazel build //packages/angular/cli:npm_package
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:test
devkit-core-tests:
name: '@angular/devkit/core tests'
prepare:
- bazel clean
workflow:
- bazel test //packages/angular_devkit/core:test
devkit-core-tests-rerun:
name: '@angular/devkit/core return test'
prepare:
- bazel clean
workflow:
- bazel test //packages/angular_devkit/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: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:test