Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Worker.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>Microsoft.Azure.Functions.NodeJsWorker</id>
<version>2.0.2$version$</version>
<version>2.0.3$version$</version>
<authors>Microsoft</authors>
<owners>Microsoft</owners>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
Expand Down
22 changes: 13 additions & 9 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
variables: {
WORKER_VERSION: '2.0.1',
WORKER_VERSION: '2.0.3',
NODE_8: '8.x',
NODE_10: '10.x',
NODE_12: '12.x'
Expand All @@ -25,22 +25,22 @@ jobs:
IMAGE_TYPE: 'ubuntu-latest'
NODE_VERSION: $(NODE_12)
WINDOWS_NODE8:
IMAGE_TYPE: 'vs2017-win2016'
IMAGE_TYPE: 'windows-latest'
NODE_VERSION: $(NODE_8)
WINDOWS_NODE10:
IMAGE_TYPE: 'vs2017-win2016'
IMAGE_TYPE: 'windows-latest'
NODE_VERSION: $(NODE_10)
WINDOWS_NODE12:
IMAGE_TYPE: 'vs2017-win2016'
IMAGE_TYPE: 'windows-latest'
NODE_VERSION: $(NODE_12)
MAC_NODE8:
IMAGE_TYPE: 'macos-10.13'
IMAGE_TYPE: 'macOS-latest'
NODE_VERSION: $(NODE_8)
MAC_NODE10:
IMAGE_TYPE: 'macos-10.13'
IMAGE_TYPE: 'macOS-latest'
NODE_VERSION: $(NODE_10)
MAC_NODE12:
IMAGE_TYPE: 'macos-10.13'
IMAGE_TYPE: 'macOS-latest'
NODE_VERSION: $(NODE_12)
pool:
vmImage: $(IMAGE_TYPE)
Expand All @@ -49,6 +49,8 @@ jobs:
inputs:
versionSpec: $(NODE_VERSION)
displayName: 'Install Node.js for test'
- script: npm install request
displayName: 'Workaround to https://github.com/grpc/grpc-node/issues/922'
- script: npm install
displayName: 'npm install'
- script: npm run build
Expand All @@ -65,12 +67,14 @@ jobs:
NODE12:
NODE_VERSION: $(NODE_12)
pool:
vmImage: 'vs2017-win2016'
vmImage: 'windows-latest'
steps:
- task: NodeTool@0
inputs:
versionSpec: $(NODE_VERSION)
displayName: 'Install Node.js for test'
- script: npm install request
displayName: 'Workaround to https://github.com/grpc/grpc-node/issues/922'
- script: npm install
displayName: 'npm install'
- script: npm run build
Expand All @@ -96,7 +100,7 @@ jobs:
- job: BuildArtifacts
condition: and(succeeded(), or(eq(variables['Build.SourceBranch'], 'refs/heads/master'), eq(variables['Build.SourceBranch'], 'refs/heads/v2.x')))
pool:
vmImage: 'vs2017-win2016'
vmImage: 'windows-latest'
steps:
- task: NodeTool@0
inputs:
Expand Down
2 changes: 1 addition & 1 deletion e2e-nightly-cli-azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
variables: {
WORKER_VERSION: '2.0.2',
WORKER_VERSION: '2.0.3',
NODE_12: '12.x'
}
name: $(WORKER_VERSION)-$(Date:yyyyMMdd)$(Rev:.r)
Expand Down
2 changes: 1 addition & 1 deletion e2e-nightly-site-azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
variables: {
WORKER_VERSION: '2.0.2',
WORKER_VERSION: '2.0.3',
NODE_12: '12.x'
}
name: $(WORKER_VERSION)-$(Date:yyyyMMdd)$(Rev:.r)
Expand Down
Loading