diff options
author | 杨宇千 <crupest@outlook.com> | 2019-10-17 14:05:03 +0800 |
---|---|---|
committer | 杨宇千 <crupest@outlook.com> | 2019-10-17 14:05:03 +0800 |
commit | 2c05860d6e3f5fb85e972811efdb23ef1b3604e1 (patch) | |
tree | 7476de88eb92d7f94a30cc74406cf9411e8511bd | |
parent | b705c33699284214755c66c5daab8d65784c9cfe (diff) | |
download | timeline-2c05860d6e3f5fb85e972811efdb23ef1b3604e1.tar.gz timeline-2c05860d6e3f5fb85e972811efdb23ef1b3604e1.tar.bz2 timeline-2c05860d6e3f5fb85e972811efdb23ef1b3604e1.zip |
Update CI.
-rw-r--r-- | azure-pipelines.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 6078b1ff..e696b6a9 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -7,6 +7,7 @@ stages: jobs:
- job: build
+ displayName: Build Debug and Test
pool:
vmImage: 'ubuntu-18.04'
variables:
@@ -16,7 +17,7 @@ stages: - task: UseDotNet@2
inputs:
packageType: sdk
- version: 2.2.x
+ version: 3.x
- script: |
dotnet restore Timeline/Timeline.csproj --configfile nuget.config
@@ -40,6 +41,7 @@ stages: - stage: deploy
displayName: Build Release and Deploy
+ dependsOn: build
variables:
buildConfiguration: 'Release'
|