aboutsummaryrefslogtreecommitdiff
path: root/azure-pipelines.yml
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2018-11-06 20:17:00 +0800
committercrupest <crupest@outlook.com>2018-11-06 20:17:00 +0800
commitf5a063f60eac26df6f65ba99683231912d91a2c2 (patch)
treeaf2e64b9f15fea336083a8bd3c8a399bff0bfe10 /azure-pipelines.yml
parent544834eb179760cadadd9a8d56ae384a799fc55b (diff)
downloadcru-f5a063f60eac26df6f65ba99683231912d91a2c2.tar.gz
cru-f5a063f60eac26df6f65ba99683231912d91a2c2.tar.bz2
cru-f5a063f60eac26df6f65ba99683231912d91a2c2.zip
Update azure-pipelines.yml
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r--azure-pipelines.yml14
1 files changed, 7 insertions, 7 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index 0af119c6..23f024aa 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -4,7 +4,7 @@
# https://docs.microsoft.com/azure/devops/pipelines/apps/windows/dot-net
jobs:
- - job: x86-debug
+ - job: x86_debug
pool:
vmImage: 'VS2017-Win2016'
@@ -30,7 +30,7 @@ jobs:
pathToPublish: '$(build.artifactStagingDirectory)'
artifactName: 'executables'
- - job: x64-debug
+ - job: x64_debug
pool:
vmImage: 'VS2017-Win2016'
@@ -56,11 +56,11 @@ jobs:
pathToPublish: '$(build.artifactStagingDirectory)'
artifactName: 'executables'
- - job: x86-release
+ - job: x86_release
pool:
vmImage: 'VS2017-Win2016'
- dependsOn: x86-debug
+ dependsOn: x86_debug
variables:
solution: '**/*.sln'
@@ -84,12 +84,12 @@ jobs:
pathToPublish: '$(build.artifactStagingDirectory)'
artifactName: 'executables'
- - job: x64-release
+ - job: x64_release
pool:
vmImage: 'VS2017-Win2016'
- dependsOn: x64-debug
-
+ dependsOn: x64_debug
+
variables:
solution: '**/*.sln'
buildPlatform: 'x64'