Skip to content
This repository was archived by the owner on Dec 20, 2018. It is now read-only.

Commit 51fba2d

Browse files
Update CI configs to use node 10
1 parent d4b8fee commit 51fba2d

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
init:
22
- git config --global core.autocrlf true
33
install:
4-
- ps: Install-Product node 8 x64
4+
- ps: Install-Product node 10 x64
55
branches:
66
only:
77
- dev

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ env:
55
global:
66
- DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
77
- DOTNET_CLI_TELEMETRY_OPTOUT: 1
8-
- TRAVIS_NODE_VERSION: 8.9.3
8+
- TRAVIS_NODE_VERSION: 10.5.0
99
addons:
1010
apt:
1111
packages:

.vsts-pipelines/builds/ci-internal.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,24 +15,24 @@ phases:
1515
agentOs: Windows
1616
beforeBuild:
1717
- task: NodeTool@0
18-
displayName: Use Node 8.x
18+
displayName: Use Node 10.x
1919
inputs:
20-
versionSpec: 8.x
20+
versionSpec: 10.x
2121

2222
- template: .vsts-pipelines/templates/phases/default-build.yml@buildtools
2323
parameters:
2424
agentOs: macOS
2525
beforeBuild:
2626
- task: NodeTool@0
27-
displayName: Use Node 8.x
27+
displayName: Use Node 10.x
2828
inputs:
29-
versionSpec: 8.x
29+
versionSpec: 10.x
3030

3131
- template: .vsts-pipelines/templates/phases/default-build.yml@buildtools
3232
parameters:
3333
agentOs: Linux
3434
beforeBuild:
3535
- task: NodeTool@0
36-
displayName: Use Node 8.x
36+
displayName: Use Node 10.x
3737
inputs:
38-
versionSpec: 8.x
38+
versionSpec: 10.x

.vsts-pipelines/builds/ci-public.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,18 @@ phases:
1717
agentOs: Windows
1818
beforeBuild:
1919
- task: NodeTool@0
20-
displayName: Use Node 8.x
20+
displayName: Use Node 10.x
2121
inputs:
22-
versionSpec: 8.x
22+
versionSpec: 10.x
2323

2424
- template: .vsts-pipelines/templates/phases/default-build.yml@buildtools
2525
parameters:
2626
agentOs: macOS
2727
beforeBuild:
2828
- task: NodeTool@0
29-
displayName: Use Node 8.x
29+
displayName: Use Node 10.x
3030
inputs:
31-
versionSpec: 8.x
31+
versionSpec: 10.x
3232
- script: ./run.sh install-tools; $(Agent.WorkFolder)/.dotnet/dotnet dev-certs https
3333
displayName: install certs
3434

@@ -37,6 +37,6 @@ phases:
3737
agentOs: Linux
3838
beforeBuild:
3939
- task: NodeTool@0
40-
displayName: Use Node 8.x
40+
displayName: Use Node 10.x
4141
inputs:
42-
versionSpec: 8.x
42+
versionSpec: 10.x

korebuild.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"toolsets": {
55
"nodejs": {
66
"required": true,
7-
"minVersion": "8.0"
7+
"minVersion": "10.0"
88
}
99
}
1010
}

0 commit comments

Comments
 (0)