diff options
| author | Tim Foley <tim.foley.is@gmail.com> | 2017-06-09 17:24:23 -0700 |
|---|---|---|
| committer | Tim Foley <tim.foley.is@gmail.com> | 2017-06-09 17:24:23 -0700 |
| commit | 2495f6b5410a288c09451eca8d01742000a3f09c (patch) | |
| tree | fbf9e9f7168eded7d064342400b9dfd328215055 | |
| parent | 383bc767601b9503476e9664034dde26ba3c49c9 (diff) | |
appveyor: Add initial appveyor.yml
| -rw-r--r-- | appveyor.yml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 000000000..bd190bf6e --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,22 @@ + +# version format +version: 0.0.{build} + +# build worker image +image: Visual Studio 2015 + +# platforms to build +platform: + - Win32 + - x64 + +# configurations to build +configuration: + - Debug + - Release + +# specify build settings +build: + project: slang.sln + +# TODO: need to invoke test script here |
