-
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Set up CI with Azure Pipelines (#48)
Doing this so I can setup a Release pipeline that pushes to NuGet. * JAVA_HOME_8_X64 workaround
- Loading branch information
1 parent
d8bcbca
commit 6ca614f
Showing
2 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# https://aka.ms/yaml | ||
|
||
name: $(BuildID) | ||
|
||
trigger: | ||
- master | ||
|
||
jobs: | ||
- job: windows | ||
pool: | ||
name: Hosted Windows 2019 with VS2019 | ||
demands: | ||
- msbuild | ||
steps: | ||
- powershell: | | ||
./build.ps1 -t AppVeyor | ||
displayName: build | ||
- task: PublishPipelineArtifact@0 | ||
displayName: artifacts | ||
inputs: | ||
artifactName: artifacts | ||
targetPath: build | ||
condition: succeededOrFailed() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters