Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add initial CI with Azure Pipelines #29

Merged
merged 14 commits into from
Sep 28, 2018
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# NetEscapades.Configuration

[![AzurePipelines](https://dev.azure.com/andrewlocknet/NetEscapades.Configuration/_apis/build/status/andrewlock.NetEscapades.Configuration?branchName=master)](https://dev.azure.com/andrewlocknet/NetEscapades.Configuration/_build/latest?definitionId=1)

[![AppVeyor build status][appveyor-badge]](https://ci.appveyor.com/project/andrewlock/netescapades-configuration)

[![NuGet][yaml-nuget-badge]][yaml-nuget]
Expand Down
31 changes: 31 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
jobs:

- job: Linux
pool:
vmImage: 'ubuntu-16.04'
steps:
- bash: ./build.sh
env:
COREHOST_TRACE: 0
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
DOTNET_CLI_TELEMETRY_OPTOUT: 1

- job: macOS
pool:
vmImage: 'xcode9-macos10.13'
steps:
- bash: ./build.sh
env:
COREHOST_TRACE: 0
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
DOTNET_CLI_TELEMETRY_OPTOUT: 1

- job: Windows
pool:
vmImage: 'vs2017-win2017'
steps:
- powershell: .\build.ps1
env:
COREHOST_TRACE: 0
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
DOTNET_CLI_TELEMETRY_OPTOUT: 1