Skip to content

Commit

Permalink
Merge pull request #10 from flyingpie/azure-pipelines
Browse files Browse the repository at this point in the history
Set up CI with Azure Pipelines
  • Loading branch information
flyingpie authored Aug 17, 2020
2 parents 2360831 + 229ed36 commit 6cd8865
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
trigger:
- master

pool:
vmImage: 'windows-2019'

steps:
- script: echo Hello, world!
displayName: 'Run a one-line script'

- task: Cake@2
inputs:
script: 'build.cake'
target: 'Default'
verbosity: 'Verbose'
arguments: '-output="$(Build.StagingDirectory)"'

0 comments on commit 6cd8865

Please sign in to comment.