Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: update nightly job to run on 10.2.x branch #19167

Merged
merged 2 commits into from Oct 22, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .circleci/config.yml
Expand Up @@ -423,7 +423,7 @@ workflows:
filters:
branches:
only:
- 10.1.x
- 10.2.x
jobs:
# Linux jobs
- setup
Expand Down
4 changes: 2 additions & 2 deletions tests/legacy-cli/e2e/tests/build/platform-server.ts
Expand Up @@ -12,12 +12,12 @@ export default async function () {

// @nguniversal/express-engine currently relies on ^0.1000.0 of @angular-devkit/architect
// which is not present in the local package registry and not semver compatible with 0.1001.0+
const { stdout: stdout1 } = await silentNpm('pack', '@angular-devkit/architect@0.1000', '--registry=https://registry.npmjs.org');
const { stdout: stdout1 } = await silentNpm('pack', '@angular-devkit/architect@0.1001', '--registry=https://registry.npmjs.org');
await silentNpm('publish', stdout1.trim(), '--registry=http://localhost:4873', '--tag=minor');

// @nguniversal/express-engine currently relies on ^10.0.0 of @angular-devkit/core
// which is not present in the local package registry and not semver compatible prerelease version of 10.1.0
const { stdout: stdout2 } = await silentNpm('pack', '@angular-devkit/core@10.0', '--registry=https://registry.npmjs.org');
const { stdout: stdout2 } = await silentNpm('pack', '@angular-devkit/core@10.1', '--registry=https://registry.npmjs.org');
await silentNpm('publish', stdout2.trim(), '--registry=http://localhost:4873', '--tag=minor');

await ng('add', '@nguniversal/express-engine');
Expand Down