-
Notifications
You must be signed in to change notification settings - Fork 358
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1764 from avsm/master
Experimental Windows CI build using Appveyor
- Loading branch information
Showing
1 changed file
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
platform: | ||
- x86 | ||
|
||
environment: | ||
global: | ||
CYG_ROOT: C:/cygwin | ||
CYG_MIRROR: http://cygwin.uib.no | ||
CYG_CACHE: C:/cygwin/var/cache/setup | ||
matrix: | ||
- | ||
CYG_ARCH: x86 | ||
|
||
init: | ||
- 'echo System architecture: %PLATFORM%' | ||
|
||
install: | ||
- 'appveyor DownloadFile http://cygwin.com/setup-%CYG_ARCH%.exe -FileName setup.exe' | ||
- 'setup.exe -qnNdO -R "%CYG_ROOT%" -s "%CYG_MIRROR%" -l "%CYG_CACHE%" -P make -P git -P gcc-core -P ocaml -P ocaml-camlp4 -P ocaml-compiler-libs -P curl -P libncurses-devel -P m4 -P unzip >NUL' | ||
- 'setup.exe -qnNdO -R "%CYG_ROOT%" -s "%CYG_MIRROR%" -l "%CYG_CACHE%" -P libmpfr-devel -P patch -P flexdll >NUL' | ||
- '%CYG_ROOT%/bin/bash -lc "cygcheck -dc cygwin"' | ||
|
||
build_script: | ||
- '%CYG_ROOT%/bin/bash -lc "cd \"$OLDPWD\" && env DJDIR="workaround" ./configure && make lib-ext && make && make install"' | ||
- '%CYG_ROOT%/bin/bash -lc "opam init -y -a"' | ||
- '%CYG_ROOT%/bin/bash -lc "opam install -y -v lwt"' | ||
|