Skip to content
This repository has been archived by the owner on Feb 8, 2022. It is now read-only.

use Azure Pipelines for Windows builds #105

Merged
merged 6 commits into from
Mar 29, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
build on Windows
  • Loading branch information
ctaggart committed Mar 29, 2019
commit e89cbfbe3634bd8d3eba626a41074568ac9281a2
5 changes: 3 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ jobs:
# container: 'mcr.microsoft.com/dotnet/core/sdk:2.2.105-nanoserver-1803'
steps:
- script: |
dotnet --info
dotnet --version
.\build.ps1
if ($lastexitcode -ne 0){ exit $lastexitcode }

- job: Linux
pool:
Expand All @@ -15,7 +17,6 @@ jobs:
steps:
- script: |
set -e
dotnet --info
./build.sh
./build-checksum.sh
- task: CopyFiles@2
Expand Down