diff options
author | Chad Tolkien <chad@tolkien.id.au> | 2019-07-09 08:51:31 +1000 |
---|---|---|
committer | Chad Tolkien <chad@tolkien.id.au> | 2019-07-09 08:51:31 +1000 |
commit | ce0f63ff444a4d885113ac2e9a68e121786cb959 (patch) | |
tree | c4f2f9d49974ff211e99f1da9773dd71f54aa491 | |
parent | ba0379181a9696b8402d14bef9de61ab63ee467b (diff) | |
download | TinyPNG-ce0f63ff444a4d885113ac2e9a68e121786cb959.zip TinyPNG-ce0f63ff444a4d885113ac2e9a68e121786cb959.tar.gz TinyPNG-ce0f63ff444a4d885113ac2e9a68e121786cb959.tar.bz2 |
Update azure-pipelines.yml for Azure Pipelines
-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 f18e28f..292b798 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -2,17 +2,22 @@ variables: DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true BuildConfiguration: "Release" + trigger: - master +pr: +- master jobs: - job: "Build" displayName: "Building .NET Application" strategy: matrix: Windows: - vmImage: 'windows-2019' + imageToUse: 'windows-2019' Linux: - vmImage: 'ubuntu-latest' + imageToUse: 'ubuntu-latest' + pool: + vmImage: imageToUse steps: - task: DotNetCoreInstaller@0 displayName: "Use .NET Core sdk 2.2.100" |