unicorn/.appveyor.yml

40 lines
1.4 KiB
YAML
Raw Normal View History

2016-07-14 05:20:15 +02:00
# Appveyor configuration file for CI build of Unicorn Engine on Windows (under Cygwin)
2016-03-08 05:52:13 +01:00
environment:
2016-07-14 05:20:15 +02:00
matrix:
- CYG_ROOT: C:\cygwin64
CYG_SETUP: setup-x86_64.exe
CYG_MIRROR: http://cygwin.mirror.constant.com
CYG_CACHE: C:\cygwin64\var\cache\setup
CYG_BASH: C:\cygwin64\bin\bash
CC: gcc
- CYG_ROOT: C:\cygwin
CYG_SETUP: setup-x86.exe
CYG_MIRROR: http://cygwin.mirror.constant.com
CYG_CACHE: C:\cygwin\var\cache\setup
CYG_BASH: C:\cygwin\bin\bash
CC: gcc
2016-07-14 04:59:00 +02:00
# Cache Cygwin files to speed up build
cache:
- '%CYG_CACHE%'
2016-07-14 05:20:15 +02:00
clone_depth: 1
2016-07-14 04:59:00 +02:00
# 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
2016-03-08 05:52:13 +01:00
2016-07-14 04:59:00 +02:00
# Install needed build dependencies
install:
2016-07-14 05:20:15 +02:00
- ps: 'Start-FileDownload "http://cygwin.com/$env:CYG_SETUP" -FileName "$env:CYG_SETUP"'
- '%CYG_SETUP% --quiet-mode --no-shortcuts --only-site --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'
2016-07-14 04:59:00 +02:00
- '%CYG_BASH% -lc "cygcheck -dc cygwin"'
2016-03-08 05:52:13 +01:00
build_script:
2016-07-14 05:20:15 +02:00
- 'echo building...'
- '%CYG_BASH% -lc "export CYGWIN=winsymlinks:native; cd $APPVEYOR_BUILD_FOLDER; ./make.sh"'
2016-07-14 04:59:00 +02:00
#
# Disable tests for now
#
test: off