ocaml/appveyor.yml

63 lines
2.8 KiB
YAML
Raw Normal View History

#**************************************************************************
#* *
#* OCaml *
#* *
#* Christophe Troestler *
#* *
#* Copyright 2015 Christophe Troestler *
#* *
#* All rights reserved. This file is distributed under the terms of *
#* the GNU Lesser General Public License version 2.1, with the *
#* special exception on linking described in the file LICENSE. *
#* *
#**************************************************************************
2015-11-29 03:23:22 -08:00
# Compile the 64 bits version
platform:
- x64
branches:
only:
- trunk
2017-02-17 14:14:16 -08:00
- 4.05
2015-11-29 03:23:22 -08:00
# Do a shallow clone of the repo to speed up the build
clone_depth: 1
environment:
global:
CYG_ROOT: C:/cygwin
CYG_MIRROR: http://mirrors.kernel.org/sourceware/cygwin/
CYG_CACHE: C:/cygwin/var/cache/setup
OCAMLROOT: "%PROGRAMFILES%/OCaml"
OCAMLROOT2: "%PROGRAMFILES%/OCaml-mingw32"
2015-11-29 03:23:22 -08:00
cache:
- C:\cygwin\var\cache\setup
install:
- mkdir "%OCAMLROOT%/bin/flexdll"
2016-12-17 07:01:05 -08:00
- appveyor DownloadFile "http://alain.frisch.fr/flexdll/flexdll-bin-0.35.zip" -FileName "flexdll.zip"
2015-11-29 03:23:22 -08:00
- cinst 7zip.commandline
- 7za x -y flexdll.zip
2017-02-19 14:54:53 -08:00
- for %%F in (flexdll.h flexlink.exe flexdll*_msvc64.obj default_amd64.manifest) do copy %%F "%OCAMLROOT%\bin\flexdll"
2015-11-29 03:23:22 -08:00
# Make sure the Cygwin path comes before the Git one (otherwise
# cygpath behaves crazily), but after the MSVC one.
2017-02-19 14:54:53 -08:00
- set Path=C:\cygwin\bin;%OCAMLROOT%\bin\flexdll;%Path%
- '%CYG_ROOT%\bin\bash -lc "cygcheck -dc cygwin"'
- '"%CYG_ROOT%\setup-x86.exe" -qgnNdO -R "%CYG_ROOT%" -s "%CYG_MIRROR%" -l "%CYG_CACHE%" -P diffutils -P make -P mingw64-i686-gcc-core >NUL'
2015-11-29 03:23:22 -08:00
- '%CYG_ROOT%\bin\bash -lc "cygcheck -dc cygwin"'
- call "C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64
build_script:
- "%CYG_ROOT%/bin/bash -lc \"echo 'eval $($APPVEYOR_BUILD_FOLDER/tools/msvs-promote-path)' >> ~/.bash_profile\""
2015-11-29 03:23:22 -08:00
- '%CYG_ROOT%/bin/bash -lc "$APPVEYOR_BUILD_FOLDER/appveyor_build.sh"'
2015-12-04 04:55:51 -08:00
test_script:
- '%APPVEYOR_BUILD_FOLDER%\ocamlc.opt -version'
2015-12-04 04:55:51 -08:00
- set CAML_LD_LIBRARY_PATH=%OCAMLROOT%/lib/stublibs
- '%CYG_ROOT%/bin/bash -lc "cd $APPVEYOR_BUILD_FOLDER && make tests"'
- '%CYG_ROOT%/bin/bash -lc "cd $APPVEYOR_BUILD_FOLDER/../build-mingw32 && make tests"'
- '%CYG_ROOT%/bin/bash -lc "cd $APPVEYOR_BUILD_FOLDER && make install"'
- '%CYG_ROOT%/bin/bash -lc "cd $APPVEYOR_BUILD_FOLDER/../build-mingw32 && make install"'