2016-01-16 22:20:23 +01:00
|
|
|
environment:
|
2016-01-16 12:44:34 +01:00
|
|
|
matrix:
|
2016-01-16 22:20:23 +01:00
|
|
|
- MSYSTEM: MINGW64
|
|
|
|
PATH: C:\msys64\usr\bin;C:\msys64\mingw64\bin;C:\Windows\System32;C:\Windows;%PATH%
|
|
|
|
- MSYSTEM: MINGW32
|
|
|
|
PATH: C:\msys64\usr\bin;C:\msys64\mingw32\bin;C:\Windows\System32;C:\Windows;%PATH%
|
2016-01-16 12:44:34 +01:00
|
|
|
|
|
|
|
|
|
|
|
install:
|
|
|
|
# update mysy2
|
|
|
|
- C:\msys64\usr\bin\bash -lc "pacman --needed --noconfirm -Sy pacman-mirrors"
|
|
|
|
- C:\msys64\usr\bin\bash -lc "pacman --noconfirm -Sy"
|
|
|
|
- C:\msys64\usr\bin\bash -lc "pacman --noconfirm -S autoconf automake bison flex"
|
|
|
|
- C:\msys64\usr\bin\bash -lc "pacman --noconfirm -S mingw-w64-i686-oniguruma mingw-w64-x86_64-oniguruma"
|
|
|
|
|
|
|
|
|
|
|
|
build_script:
|
|
|
|
- bash -lc "exec 0</dev/null && cd $APPVEYOR_BUILD_FOLDER && autoreconf -i"
|
|
|
|
- bash -lc "exec 0</dev/null && cd $APPVEYOR_BUILD_FOLDER && ./configure --disable-shared --enable-static --enable-all-static"
|
|
|
|
- bash -lc "exec 0</dev/null && cd $APPVEYOR_BUILD_FOLDER && make LDFLAGS=-lshlwapi"
|
|
|
|
- 7z a jq-package.zip jq.1 jq.exe
|
|
|
|
- bash -lc "exec 0</dev/null && cd $APPVEYOR_BUILD_FOLDER && pwd && ls -la"
|
2016-01-16 22:20:23 +01:00
|
|
|
- file jq.exe
|
2016-01-16 12:44:34 +01:00
|
|
|
|
|
|
|
test_script:
|
|
|
|
- echo not run?
|
|
|
|
|
|
|
|
artifacts:
|
|
|
|
- path: jq-package.zip
|
|
|
|
name: jq-package
|
|
|
|
|
|
|
|
- path: jq.exe
|
|
|
|
name: jq-exe
|
|
|
|
|