Skip to content

Commit

Permalink
ci: use Angular 6 project with CLI using fixed RxJs
Browse files Browse the repository at this point in the history
  • Loading branch information
filipesilva committed Mar 27, 2018
1 parent 46946e6 commit 7e09cca
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ test_script:
- npm --version
- npm run test:packages
- npm run test:cli
- node tests\run_e2e.js --appveyor "--glob=tests/{basic,commands,generate,build/styles}/**"
- node tests\run_e2e.js --appveyor "--glob=tests/{basic,commands,generate,build/styles}/**" --ng-version="6.0.0-rc.0"

build: off

Expand Down
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,19 +36,19 @@ matrix:
env: test
- node_js: "8"
os: linux
script: node tests/run_e2e.js --nb-shards=4 --shard=0 --nosilent
script: node tests/run_e2e.js --nb-shards=4 --shard=0 --nosilent --ng-version="6.0.0-rc.0"
env: e2e-0
- node_js: "8"
os: linux
script: node tests/run_e2e.js --nb-shards=4 --shard=1 --nosilent
script: node tests/run_e2e.js --nb-shards=4 --shard=1 --nosilent --ng-version="6.0.0-rc.0"
env: e2e-1
- node_js: "8"
os: linux
script: node tests/run_e2e.js --nb-shards=4 --shard=2 --nosilent
script: node tests/run_e2e.js --nb-shards=4 --shard=2 --nosilent --ng-version="6.0.0-rc.0"
env: e2e-2
- node_js: "8"
os: linux
script: node tests/run_e2e.js --nb-shards=4 --shard=3 --nosilent
script: node tests/run_e2e.js --nb-shards=4 --shard=3 --nosilent --ng-version="6.0.0-rc.0"
env: e2e-3
- node_js: "8"
os: linux
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"node-modules-path": "^1.0.0",
"opn": "~5.1.0",
"resolve": "^1.1.7",
"rxjs": "^5.5.6",
"rxjs": "^5.5.8",
"semver": "^5.3.0",
"silent-error": "^1.0.0",
"typescript": "~2.6.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/@angular/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"node-modules-path": "^1.0.0",
"opn": "~5.1.0",
"resolve": "^1.1.7",
"rxjs": "^5.5.6",
"rxjs": "^5.5.8",
"semver": "^5.1.0",
"silent-error": "^1.0.0",
"yargs-parser": "^9.0.2"
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/utils/project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ export function useNgVersion(version: string) {
json['devDependencies']['typescript'] = '~2.5.0';
} else {
json['devDependencies']['typescript'] = '~2.7.0';
json['dependencies']['rxjs'] = '6.0.0-beta.0';
json['dependencies']['rxjs'] = '6.0.0-beta.3';
}
});
}
Expand Down

0 comments on commit 7e09cca

Please sign in to comment.