Skip to content

Commit

Permalink
Add appveyor.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaslevesque committed Sep 23, 2018
1 parent 909eada commit 1c36d8b
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
version: '{build}'
image: Visual Studio 2017

pull_requests:
do_not_increment_build_number: true

build_script:
- cmd: build.cmd

on_failure:
- ps: $root = (Resolve-Path artifacts); [IO.Directory]::GetFiles($root.Path, '*.*', 'AllDirectories') | % { Push-AppveyorArtifact $_ -FileName $_.Substring($root.Path.Length + 1) -DeploymentName failed-build }

nuget:
disable_publish_on_pr: true

artifacts:
- path: .\artifacts\*\*

0 comments on commit 1c36d8b

Please sign in to comment.