aboutsummaryrefslogtreecommitdiff
path: root/examples/redis-unstable/deps/hiredis/appveyor.yml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/redis-unstable/deps/hiredis/appveyor.yml')
-rw-r--r--examples/redis-unstable/deps/hiredis/appveyor.yml24
1 files changed, 24 insertions, 0 deletions
diff --git a/examples/redis-unstable/deps/hiredis/appveyor.yml b/examples/redis-unstable/deps/hiredis/appveyor.yml
new file mode 100644
index 0000000..5b43fdb
--- /dev/null
+++ b/examples/redis-unstable/deps/hiredis/appveyor.yml
@@ -0,0 +1,24 @@
1# Appveyor configuration file for CI build of hiredis on Windows (under Cygwin)
2environment:
3 matrix:
4 - CYG_BASH: C:\cygwin64\bin\bash
5 CC: gcc
6 - CYG_BASH: C:\cygwin\bin\bash
7 CC: gcc
8 CFLAGS: -m32
9 CXXFLAGS: -m32
10 LDFLAGS: -m32
11
12clone_depth: 1
13
14# Attempt to ensure we don't try to convert line endings to Win32 CRLF as this will cause build to fail
15init:
16 - git config --global core.autocrlf input
17
18# Install needed build dependencies
19install:
20 - '%CYG_BASH% -lc "cygcheck -dc cygwin"'
21
22build_script:
23 - 'echo building...'
24 - '%CYG_BASH% -lc "cd $APPVEYOR_BUILD_FOLDER; exec 0</dev/null; mkdir build && cd build && cmake .. -G \"Unix Makefiles\" && make VERBOSE=1"'