Skip to content

Commit 7f8489c

Browse files
filipesilvahansl
authored andcommitted
ci: don't force Angular 6 rc.2
1 parent 1854589 commit 7f8489c

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ test_script:
1515
- npm --version
1616
- npm run test:packages
1717
- npm run test:cli
18-
- node tests\run_e2e.js --appveyor "--glob=tests/{basic,commands,generate,build/styles}/**" --ng-version="6.0.0-rc.2"
18+
- node tests\run_e2e.js --appveyor "--glob=tests/{basic,commands,generate,build/styles}/**"
1919

2020
build: off
2121

.circleci/config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
- attach_workspace:
7878
<<: *attach_workspace_defaults
7979
- run: cp -r /home/circleci/workspace/dist/ ./
80-
- run: xvfb-run -a node tests/run_e2e.js --nobuild --reuse=/home/circleci/workspace/angular-cli-e2e-default/test-project --nb-shards=4 --shard=0 --nosilent --ng-version="6.0.0-rc.2"
80+
- run: xvfb-run -a node tests/run_e2e.js --nobuild --reuse=/home/circleci/workspace/angular-cli-e2e-default/test-project --nb-shards=4 --shard=0 --nosilent
8181

8282
e2e-1:
8383
<<: *defaults
@@ -88,7 +88,7 @@ jobs:
8888
- attach_workspace:
8989
<<: *attach_workspace_defaults
9090
- run: cp -r /home/circleci/workspace/dist/ ./
91-
- run: xvfb-run -a node tests/run_e2e.js --nobuild --reuse=/home/circleci/workspace/angular-cli-e2e-default/test-project --nb-shards=4 --shard=1 --nosilent --ng-version="6.0.0-rc.2"
91+
- run: xvfb-run -a node tests/run_e2e.js --nobuild --reuse=/home/circleci/workspace/angular-cli-e2e-default/test-project --nb-shards=4 --shard=1 --nosilent
9292

9393
e2e-2:
9494
<<: *defaults
@@ -99,7 +99,7 @@ jobs:
9999
- attach_workspace:
100100
<<: *attach_workspace_defaults
101101
- run: cp -r /home/circleci/workspace/dist/ ./
102-
- run: xvfb-run -a node tests/run_e2e.js --nobuild --reuse=/home/circleci/workspace/angular-cli-e2e-default/test-project --nb-shards=4 --shard=2 --nosilent --ng-version="6.0.0-rc.2"
102+
- run: xvfb-run -a node tests/run_e2e.js --nobuild --reuse=/home/circleci/workspace/angular-cli-e2e-default/test-project --nb-shards=4 --shard=2 --nosilent
103103

104104
e2e-3:
105105
<<: *defaults
@@ -110,7 +110,7 @@ jobs:
110110
- attach_workspace:
111111
<<: *attach_workspace_defaults
112112
- run: cp -r /home/circleci/workspace/dist/ ./
113-
- run: xvfb-run -a node tests/run_e2e.js --nobuild --reuse=/home/circleci/workspace/angular-cli-e2e-default/test-project --nb-shards=4 --shard=3 --nosilent --ng-version="6.0.0-rc.2"
113+
- run: xvfb-run -a node tests/run_e2e.js --nobuild --reuse=/home/circleci/workspace/angular-cli-e2e-default/test-project --nb-shards=4 --shard=3 --nosilent
114114

115115
# Master only E2E.
116116
nightly-e2e:

.travis.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,19 +36,19 @@ matrix:
3636
env: test
3737
- node_js: "8"
3838
os: linux
39-
script: node tests/run_e2e.js --nb-shards=4 --shard=0 --nosilent --ng-version="6.0.0-rc.2"
39+
script: node tests/run_e2e.js --nb-shards=4 --shard=0 --nosilent
4040
env: e2e-0
4141
- node_js: "8"
4242
os: linux
43-
script: node tests/run_e2e.js --nb-shards=4 --shard=1 --nosilent --ng-version="6.0.0-rc.2"
43+
script: node tests/run_e2e.js --nb-shards=4 --shard=1 --nosilent
4444
env: e2e-1
4545
- node_js: "8"
4646
os: linux
47-
script: node tests/run_e2e.js --nb-shards=4 --shard=2 --nosilent --ng-version="6.0.0-rc.2"
47+
script: node tests/run_e2e.js --nb-shards=4 --shard=2 --nosilent
4848
env: e2e-2
4949
- node_js: "8"
5050
os: linux
51-
script: node tests/run_e2e.js --nb-shards=4 --shard=3 --nosilent --ng-version="6.0.0-rc.2"
51+
script: node tests/run_e2e.js --nb-shards=4 --shard=3 --nosilent
5252
env: e2e-3
5353
- node_js: "8"
5454
os: linux
@@ -69,7 +69,7 @@ matrix:
6969
env: nightly
7070
- node_js: "9"
7171
os: linux
72-
script: node tests/run_e2e.js "--glob=tests/build/**" --ng-version="6.0.0-rc.2"
72+
script: node tests/run_e2e.js "--glob=tests/build/**"
7373
env: node9
7474

7575
# Deploy stage

0 commit comments

Comments
 (0)