ci: rename material-unit-tests job to components-repo-unit-tests (#34898)

We rename the `material-unit-tests` job to `components-repo-unit-tests`
because the job runs all unit tests found in the Angular Components repository.
This includes the Angular CDK, Angular Material and more. Also the repository has
been renamed from `angular/material2` to `angular/components` in the past.

PR Close #34898
This commit is contained in:
Paul Gschwendtner
2020-01-22 21:54:16 +01:00
committed by Andrew Kushnir
parent 3049878aa9
commit fa4ea34401
10 changed files with 103 additions and 93 deletions

View File

@ -1,7 +1,7 @@
# Debugging the Material unit tests job
# Debugging the `components-repo-unit-tests` job
Currently all changes to Ivy are validated against the test suite of the
`angular/components` repository. In order to debug the `material-unit-tests` CI
`angular/components` repository. In order to debug the `components-repo-unit-tests` CI
job, the following steps can be used:
1\) Build the Ivy package output by running `node ./scripts/build-ivy-npm-packages.js` in
@ -9,14 +9,14 @@ the `angular/angular` repo.
2\) Clone the `angular/components` repository if not done yet ([quick link to repo](https://github.com/angular/components)).
3\) Set up the package output in the `components` repository by running the following
3\) Set up the package output in the `angular/components` repository by running the following
command in the `angular/angular` repo:
```bash
node ./scripts/ci/update-deps-to-dist-packages.js {COMPONENTS_REPO}/package.json ./dist/packages-dist-ivy-aot
```
4\) Switch into the `components` repository and run the tests by using the
4\) Switch into the `angular/components` repository and run the tests by using the
following command:
```bash