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

[Design]Update CI configs to use node 10 #582

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
init:
- git config --global core.autocrlf true
install:
- ps: Install-Product node 8 x64
- ps: Install-Product node 10 x64
branches:
only:
- dev
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ env:
global:
- DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
- DOTNET_CLI_TELEMETRY_OPTOUT: 1
- TRAVIS_NODE_VERSION: 8.9.3
- TRAVIS_NODE_VERSION: 10.5.0
addons:
apt:
packages:
Expand Down
12 changes: 6 additions & 6 deletions .vsts-pipelines/builds/ci-internal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,24 +15,24 @@ phases:
agentOs: Windows
beforeBuild:
- task: NodeTool@0
displayName: Use Node 8.x
displayName: Use Node 10.x
inputs:
versionSpec: 8.x
versionSpec: 10.x

- template: .vsts-pipelines/templates/phases/default-build.yml@buildtools
parameters:
agentOs: macOS
beforeBuild:
- task: NodeTool@0
displayName: Use Node 8.x
displayName: Use Node 10.x
inputs:
versionSpec: 8.x
versionSpec: 10.x

- template: .vsts-pipelines/templates/phases/default-build.yml@buildtools
parameters:
agentOs: Linux
beforeBuild:
- task: NodeTool@0
displayName: Use Node 8.x
displayName: Use Node 10.x
inputs:
versionSpec: 8.x
versionSpec: 10.x
14 changes: 8 additions & 6 deletions .vsts-pipelines/builds/ci-public.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,20 @@ phases:
agentOs: Windows
beforeBuild:
- task: NodeTool@0
displayName: Use Node 8.x
displayName: Use Node 10.x
inputs:
versionSpec: 8.x
versionSpec: 10.x

- template: .vsts-pipelines/templates/phases/default-build.yml@buildtools
parameters:
agentOs: macOS
beforeBuild:
- task: NodeTool@0
displayName: Use Node 8.x
displayName: Use Node 10.x
inputs:
versionSpec: 8.x
versionSpec: 10.x
- script: npm i -g @angular/cli
- script: npm i -g @angular-devkit/core
- script: ./run.sh install-tools; $(Agent.WorkFolder)/.dotnet/dotnet dev-certs https
displayName: install certs

Expand All @@ -37,6 +39,6 @@ phases:
agentOs: Linux
beforeBuild:
- task: NodeTool@0
displayName: Use Node 8.x
displayName: Use Node 10.x
inputs:
versionSpec: 8.x
versionSpec: 10.x
2 changes: 1 addition & 1 deletion korebuild.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"toolsets": {
"nodejs": {
"required": true,
"minVersion": "8.0"
"minVersion": "10.0"
}
}
}