appveyor: use Cygwin to build

This commit is contained in:
Nguyen Anh Quynh 2016-07-14 10:59:00 +08:00
parent 0a4544c82c
commit 020d8b9608

View file

@ -1,16 +1,56 @@
version: 1.0-{build} #
# Appveyor configuration file for CI build of Unicorn on Windows (under Cygwin)
platform: #
- x64 # For further details see http://www.appveyor.com
#
#
# Custom environment variables
#
environment: environment:
global: global:
MSYS2_ARCH: x86_64 CYG_ROOT: C:\cygwin
matrix: CYG_MIRROR: http://cygwin.mirror.constant.com
- HOST_ARCH_ARG: --host=x86_64-w64-mingw32 CYG_CACHE: C:\cygwin\var\cache\setup
ADD_PATH: /mingw64/bin CYG_BASH: C:\cygwin\bin\bash
- HOST_ARCH_ARG: --host=i686-w64-mingw32
ADD_PATH: /mingw32/bin
#
# Cache Cygwin files to speed up build
#
cache:
- '%CYG_CACHE%'
#
# Initialisation prior to pulling Unicorn repository
# Attempt to ensure we don't try to convert line endings to Win32 CRLF as this will cause build to fail
#
init:
- git config --global core.autocrlf input
#
# Install needed build dependencies
#
install:
- cd %CYG_CACHE%
- ps: 'Start-FileDownload "http://cygwin.com/setup-x86.exe" -FileName "setup-x86.exe"'
- 'echo Installing Cygwin packages ...'
- 'setup-x86.exe -q --root "%CYG_ROOT%" --site "%CYG_MIRROR%" --local-package-dir "%CYG_CACHE%" --packages make,gcc-core,pkg-config,libpcre-devel,libglib2.0-devel > NUL 2>&1'
- '%CYG_BASH% -lc "cygcheck -dc cygwin"'
# Cygwin build script
#
# NOTES:
#
# The stdin/stdout file descriptor appears not to be valid for the Appveyor
# build which causes failures as certain functions attempt to redirect
# default file handles. Ensure a dummy file descriptor is opened with 'exec'.
#
build_script: build_script:
- make.sh cross-win64 - 'echo Building ...'
- pwd
- '%CYG_BASH% -lc "export CYGWIN=winsymlinks:native; cd /cygdrive/c/projects/unicorn; ./make.sh"'
#
# Disable tests for now
#
test: off