AppVeyor?

This commit is contained in:
Matt Nadareski
2018-06-21 21:41:28 -07:00
parent 0653a4a3df
commit c7033c974a
2 changed files with 25 additions and 0 deletions

View File

@@ -72,6 +72,8 @@ An in-progress tool that will try to act as a C# port of the Go-based [Romba](ht
In the most technical sense, the best way to get the newest version is to build it yourself. There's no guarantee that I will release intermediate builds based on incremental code updates. Combined with the fact that I don't know how to set up a continuous build system, we get an odd situation for those users who want the bleeding edge releases. For the time being, you can find all test and intermediate builds at [this link](https://mega.nz/#F!8JUhWZxT!h4DnCsgcBsMH3RRDKv27CA).
For a limited time, I'm trying out AppVeyor: [![Build status](https://ci.appveyor.com/api/projects/status/c3hsfpmqhg40al35/branch/master?svg=true)](https://ci.appveyor.com/project/mnadareski/sabretools/branch/master)
### Some Things to Note
I have to say these because I know how some users are.

23
appveyor.yml Normal file
View File

@@ -0,0 +1,23 @@
version: 0.9.9-test_{build}
image: Visual Studio 2017
environment:
EnableNuGetPackageRestore: true
platform:
- x64
- Mono
configuration:
- Debug
install:
- ps: appveyor DownloadFile https://dist.nuget.org/win-x86-commandline/latest/nuget.exe
before_build:
- ps: nuget restore
build:
verbosity: minimal
after_build:
- ps: 7z a sabretools_debug-x64.zip C:\projects\Debug-x64\*
- ps: 7z a sabretools_debug-mono-x64.zip C:\projects\Debug-mono-x64\*
artifacts:
- path: sabretools_debug-x64.zip
name: SabreTools (x64)
- path: sabretools_debug-mono-x64.zip
name: SabreTooks (Mono x64)