aboutsummaryrefslogtreecommitdiffstats
path: root/appveyor.yml
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2015-09-14 01:15:55 +0200
committerLoïc Hoguin <[email protected]>2015-09-14 01:15:55 +0200
commit55987fd10ba0e560e6b162aeb3418f391e5882b3 (patch)
treea7dfda43c5b5a3ccc6e286315d0caea52d51d255 /appveyor.yml
parent9b4f00b32fe53842a5c15f0a73079ecd7ebf6d76 (diff)
downloaderlang.mk-55987fd10ba0e560e6b162aeb3418f391e5882b3.tar.gz
erlang.mk-55987fd10ba0e560e6b162aeb3418f391e5882b3.tar.bz2
erlang.mk-55987fd10ba0e560e6b162aeb3418f391e5882b3.zip
Add AppVeyor Windows CI configuration file
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml10
1 files changed, 10 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml
new file mode 100644
index 0000000..848fc24
--- /dev/null
+++ b/appveyor.yml
@@ -0,0 +1,10 @@
+build_script:
+- cd C:\
+- appveyor DownloadFile http://sourceforge.net/projects/msys2/files/Base/x86_64/msys2-base-x86_64-20150512.tar.xz/download -FileName "msys2.tar.xz"
+- 7z x msys2.tar.xz
+- 7z x msys2.tar > NUL
+- C:\msys64\usr\bin\bash -lc "pacman --needed --noconfirm -Sy bash pacman pacman-mirrors msys2-runtime"
+- C:\msys64\usr\bin\bash -lc "pacman --noconfirm -Syu"
+- C:\msys64\usr\bin\bash -lc "pacman --noconfirm -S git make"
+test_script:
+- C:\msys64\usr\bin\bash -lc "cd $APPVEYOR_BUILD_FOLDER && make -k check"