forked from libexif/libexif
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.appveyor.yml
27 lines (24 loc) · 1.25 KB
/
.appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# AppVeyor CI configuration file https://www.appveyor.com
environment:
CYGWIN_MIRROR: http://cygwin.mirror.constant.com
matrix:
- CONFIG: cygwin
- CONFIG: cygwin64
- CONFIG: msys2
install:
- cmd: if [%CONFIG%]==[cygwin] (
C:\cygwin\setup-x86.exe -qgnNdO -l C:\cygwin\var\cache\setup -R c:\cygwin -s "%CYGWIN_MIRROR%" -P libiconv-devel )
- cmd: if [%CONFIG%]==[cygwin64] (
C:\cygwin64\setup-x86_64.exe -qgnNdO -l C:\cygwin64\var\cache\setup -R c:\cygwin64 -s "%CYGWIN_MIRROR%" -P libiconv-devel )
- cmd: if [%CONFIG%]==[msys2] (
set "PATH=C:\msys64\mingw64\bin;C:\msys64\usr\bin;%PATH%" )
build_script:
- cmd: if not [%CONFIG%]==[msys2] (
C:\%CONFIG%\bin\bash -e -l -c "cd $APPVEYOR_BUILD_FOLDER && autoreconf -sif && ./configure --prefix=$HOME --disable-dependency-tracking && make V=1 LDFLAGS='-lintl' && make V=1 install" )
- cmd: if [%CONFIG%]==[msys2] (
bash -lc "set -x; cd $APPVEYOR_BUILD_FOLDER && autoreconf -sivf && ./configure --prefix=$HOME/install --disable-dependency-tracking && make V=1 && make V=1 install" )
test_script:
- cmd: if not [%CONFIG%]==[msys2] (
C:\%CONFIG%\bin\bash -e -l -c "cd $APPVEYOR_BUILD_FOLDER && make V=1 check" )
- cmd: if [%CONFIG%]==[msys2] (
bash -lc "cd $APPVEYOR_BUILD_FOLDER && make V=1 check" )