From bf52683c6c38a21e80ebb71cb59af7212f86e146 Mon Sep 17 00:00:00 2001 From: Oleg Nenashev Date: Fri, 9 Dec 2016 01:14:55 +0100 Subject: [PATCH 1/2] AppVeyor: Do not build feature branches in the PR builder --- appveyor.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index edd62be..7aa62d6 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,5 +1,6 @@ -# Do not build on tags (GitHub and BitBucket) +# Do not build tags and feature branches skip_tags: true +skip_branch_with_pr: true # Project configuration image: Visual Studio 2013 From 1e393f96bc863d38ca2144f19f3c48d62df959df Mon Sep 17 00:00:00 2001 From: Oleg Nenashev Date: Fri, 9 Dec 2016 01:16:16 +0100 Subject: [PATCH 2/2] AppVeyor: use relative paths to NUnit test DLLs --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 7aa62d6..d42426b 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -33,7 +33,7 @@ build: test_script: # Runner for NUnit2 -- ps: nunit-console 'C:/projects/winsw/src/Test/winswTests/bin/Release/winswTests.dll' 'C:/projects/winsw/src/Test/winswTests/bin/Release/SharedDirectoryMapper.dll' 'C:/projects/winsw/src/Test/winswTests/bin/Release/RunawayProcessKiller.dll' +- ps: nunit-console 'src/Test/winswTests/bin/Release/winswTests.dll' 'src/Test/winswTests/bin/Release/SharedDirectoryMapper.dll' 'src/Test/winswTests/bin/Release/RunawayProcessKiller.dll' artifacts: - path: 'src/Core/ServiceWrapper/bin/Release/WinSW.NET2.exe'