diff options
author | crupest <crupest@outlook.com> | 2018-10-23 21:28:19 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2018-10-23 21:28:19 +0800 |
commit | 0cfe913865e1a914005707f675b80fc81a78fc7c (patch) | |
tree | c30866a47082d20877c480f5639e256d025a0e1b /azure-pipelines.yml | |
parent | 42582b403a94d7eb32ac9bd3c09cb834b0b8f100 (diff) | |
download | cru-0cfe913865e1a914005707f675b80fc81a78fc7c.tar.gz cru-0cfe913865e1a914005707f675b80fc81a78fc7c.tar.bz2 cru-0cfe913865e1a914005707f675b80fc81a78fc7c.zip |
Update ci.
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r-- | azure-pipelines.yml | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 0c817de6..fab3f89d 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -8,10 +8,15 @@ pool: variables: solution: '**/*.sln' - buildPlatform: 'Any CPU' - buildConfiguration: 'Release' + buildPlatform: 'x64' + buildConfiguration: 'Debug' steps: +- task: ShellScript@2 + inputs: + scriptPath: 'script/install_packages.ps1' + cwd: './' + - task: VSBuild@1 inputs: solution: '$(solution)' |