summaryrefslogtreecommitdiff
path: root/appveyor.yml
diff options
context:
space:
mode:
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml31
1 files changed, 31 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml
new file mode 100644
index 0000000000..d7623e40e6
--- /dev/null
+++ b/appveyor.yml
@@ -0,0 +1,31 @@
+version: "{build}"
+build_cloud: ghc-gce-cloud
+image: GHC-GCE
+
+build:
+ verbosity: normal
+
+environment:
+ matrix:
+ - COMPILER: msys2
+ PLATFORM: x64
+ MSYS2_ARCH: x86_64
+ MSYS2_DIR: msys64
+ MSYSTEM: MINGW64
+ BIT: 64
+
+deploy: off
+
+install:
+ - cmd: |
+ SET "PATH=C:\%MSYS2_DIR%\%MSYSTEM%\bin;C:\%MSYS2_DIR%\usr\bin;%PATH%"
+ bash .appveyor.sh prepare
+
+build_script:
+ - bash .appveyor.sh build
+ - bash .appveyor.sh test
+
+artifacts:
+ - path: ghc-windows.zip
+ name: GHC Windows bindist
+ type: zip