mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
AppVeyor?
This commit is contained in:
@@ -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: [](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
23
appveyor.yml
Normal 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)
|
||||
Reference in New Issue
Block a user