]> jfr.im git - irc/evilnet/znc.git/blob - .appveyor.yml
Extend SASLAuth
[irc/evilnet/znc.git] / .appveyor.yml
1 # There is a pre-installed cygwin: http://help.appveyor.com/discussions/suggestions/427-pre-install-cygwin
2 # But it's old and misses some stuff anyway
3 #
4 # TODO: test msvc
5 version: 0.0.0.0.1-branch-{branch}-build-{build}
6 clone_depth: 10
7 environment:
8 matrix:
9 - cygwin_url: https://cygwin.com/setup-x86_64.exe
10 - cygwin_url: https://cygwin.com/setup-x86.exe
11 install:
12 - ps: Invoke-WebRequest $env:cygwin_url -OutFile c:\cygwin-setup.exe
13 # libcrypt-devel is needed only on x86_64 and only for modperl... probably some dependency problem.
14 - c:\cygwin-setup.exe --quiet-mode --no-shortcuts --no-startmenu --no-desktop --upgrade-also --only-site --site http://cygwin.mirror.constant.com/ --root c:\cygwin-root --local-package-dir c:\cygwin-setup-cache --packages gcc-g++,make,pkg-config,wget,libssl-devel,libicu-devel,zlib-devel,libcrypt-devel,perl,python3-devel,swig,libsasl2-devel,libQt5Core-devel,cmake,libboost-devel,gettext-devel
15 - c:\cygwin-root\bin\sh -lc "echo Hi"
16 - c:\cygwin-root\bin\sh -lc "uname -a"
17 - c:\cygwin-root\bin\sh -lc "cat /proc/cpuinfo"
18 - c:\cygwin-root\bin\sh -lc "cat /proc/meminfo"
19 - c:\cygwin-root\bin\sh -lc "cygcheck -s -v > $APPVEYOR_BUILD_FOLDER/cygcheck.log 2>&1"
20 - ps: Push-AppveyorArtifact cygcheck.log
21 # stdin is broken at AppVeyor, so we open it explicitly as /dev/null
22 build_script:
23 - git submodule update --init
24 - mkdir build
25 - c:\cygwin-root\bin\sh -lc "cd $APPVEYOR_BUILD_FOLDER/build; ../configure --enable-charset --enable-zlib --enable-openssl --enable-perl --enable-python --enable-cyrus < /dev/null; result=$?; cmake --system-information > config.log; appveyor PushArtifact config.log; exit $result"
26 - c:\cygwin-root\bin\sh -lc "cd $APPVEYOR_BUILD_FOLDER/build; make VERBOSE=1 -j2 < /dev/null"
27 - c:\cygwin-root\bin\sh -lc "cd $APPVEYOR_BUILD_FOLDER/build; make install < /dev/null"
28 - c:\cygwin-root\bin\sh -lc "znc --version"
29 # fix fork()
30 - c:\cygwin-root\bin\sh -lc "find /usr/local/lib/znc -iname '*.dll' -o -iname '*.so' | tee /tmp/files-to-rebase"
31 - c:\cygwin-root\bin\sh -lc "rebaseall -v -T /tmp/files-to-rebase"
32 test_script:
33 - c:\cygwin-root\bin\sh -lc "cd $APPVEYOR_BUILD_FOLDER/build; make VERBOSE=1 unittest < /dev/null"
34 - c:\cygwin-root\bin\sh -lc "cd $APPVEYOR_BUILD_FOLDER/build; make VERBOSE=1 inttest < /dev/null"