Use AppVeyor Windows CI.
authorZhang Xianyi <traits.zhang@gmail.com>
Mon, 26 Oct 2015 20:08:17 +0000 (15:08 -0500)
committerZhang Xianyi <traits.zhang@gmail.com>
Mon, 26 Oct 2015 20:08:17 +0000 (15:08 -0500)
appveyor.yml [new file with mode: 0644]

diff --git a/appveyor.yml b/appveyor.yml
new file mode 100644 (file)
index 0000000..9bb712a
--- /dev/null
@@ -0,0 +1,42 @@
+version: 0.2.14.{build}
+
+#environment:
+
+platform: 
+  - x86
+  - x64
+configuration: Release
+
+clone_folder: c:\projects\OpenBLAS
+
+init:
+  - git config --global core.autocrlf input
+
+build:
+  project: OpenBLAS.sln
+
+clone_depth: 5
+
+#branches to build
+branches:
+  only:
+    - master
+    - develop
+    - cmake
+
+skip_tags: true
+
+matrix:
+  fast_finish: true
+
+skip_commits:
+# Add [av skip] to commit messages
+  message: /\[av skip\]/
+
+before_build:
+  - echo Running cmake...
+  - cd c:\projects\OpenBLAS
+  - cmake .
+
+test_script:
+