mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2024-12-19 21:17:52 +00:00
24 lines
766 B
YAML
24 lines
766 B
YAML
|
# Appveyor configuration file for CI build of hiredis on Windows (under Cygwin)
|
||
|
environment:
|
||
|
matrix:
|
||
|
- CYG_BASH: C:\cygwin64\bin\bash
|
||
|
CC: gcc
|
||
|
- CYG_BASH: C:\cygwin\bin\bash
|
||
|
CC: gcc
|
||
|
TARGET: 32bit
|
||
|
TARGET_VARS: 32bit-vars
|
||
|
|
||
|
clone_depth: 1
|
||
|
|
||
|
# 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:
|
||
|
- '%CYG_BASH% -lc "cygcheck -dc cygwin"'
|
||
|
|
||
|
build_script:
|
||
|
- 'echo building...'
|
||
|
- '%CYG_BASH% -lc "cd $APPVEYOR_BUILD_FOLDER; exec 0</dev/null; make LDFLAGS=$LDFLAGS CC=$CC $TARGET CFLAGS=$CFLAGS && make LDFLAGS=$LDFLAGS CC=$CC $TARGET_VARS hiredis-example"'
|