Skip to content

Commit

Permalink
Merge pull request #71 from JSkimming/refine-azure-pipeline
Browse files Browse the repository at this point in the history
Refine the azure CI pipeline
  • Loading branch information
JSkimming authored Jun 13, 2019
2 parents 15fe4f1 + dde9516 commit 8b049ee
Showing 1 changed file with 13 additions and 10 deletions.
23 changes: 13 additions & 10 deletions azure-pipelines.yml → .azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,49 +7,52 @@ jobs:

- job: ShellBuild
displayName: "Build"
continueOnError: true
continueOnError: "true"
timeoutInMinutes: 5
variables:
buildFramework: netcoreapp2.1
strategy:
matrix:
"Linux 2.1 Debug":
sdkVersion: "2.1.x"
config: Debug
imageName: ubuntu-latest
framework: netcoreapp2.1
framework: $(buildFramework)
"Linux 2.1 Release":
sdkVersion: "2.1.x"
config: Release
imageName: ubuntu-latest
framework: netcoreapp2.1
framework: $(buildFramework)
"Linux 2.2 Debug":
sdkVersion: "2.2.x"
config: Debug
imageName: ubuntu-latest
framework: netcoreapp2.1
framework: $(buildFramework)
"Linux 2.2 Release":
sdkVersion: "2.2.x"
config: Release
imageName: ubuntu-latest
framework: netcoreapp2.1
framework: $(buildFramework)
"MacOS 2.1 Debug":
sdkVersion: "2.1.x"
config: Debug
imageName: macOS-latest
framework: netcoreapp2.1
framework: $(buildFramework)
"MacOS 2.1 Release":
sdkVersion: "2.1.x"
config: Release
imageName: macOS-latest
framework: netcoreapp2.1
framework: $(buildFramework)
"MacOS 2.2 Debug":
sdkVersion: "2.2.x"
config: Debug
imageName: macOS-latest
framework: netcoreapp2.1
framework: $(buildFramework)
"MacOS 2.2 Release":
sdkVersion: "2.2.x"
config: Release
imageName: macOS-latest
framework: netcoreapp2.1
framework: $(buildFramework)
pool:
vmImage: $(imageName)
steps:
Expand Down Expand Up @@ -82,7 +85,7 @@ jobs:

- job: CmdBuild
displayName: "Build"
continueOnError: true
continueOnError: "true"
strategy:
matrix:
"Windows .NET Framework Debug":
Expand Down

0 comments on commit 8b049ee

Please sign in to comment.