summaryrefslogtreecommitdiffstats
path: root/appveyor.yml
diff options
context:
space:
mode:
authorJan Schulz <jasc@gmx.net>2016-01-16 22:20:23 +0100
committerNicolas Williams <nico@cryptonector.com>2016-01-16 17:02:43 -0600
commit45260890f2a56df013c442e5734ea07afe43356e (patch)
tree16dcf8106caa77f5a34b4b2108a35a600ad72f64 /appveyor.yml
parent4337fc5fe06c4ed699f856e34cfdc9f287010a55 (diff)
Add 32bit windows builds on appveyor
Signed-off-by: Nicolas Williams <nico@cryptonector.com>
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml13
1 files changed, 6 insertions, 7 deletions
diff --git a/appveyor.yml b/appveyor.yml
index ee9c60cf..c26194f9 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -1,18 +1,16 @@
-environment:
+environment:
matrix:
- - Compiler: mingw
+ - 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%
install:
- - set "PATH=C:\msys64\usr\bin;C:\msys64\mingw64\bin;C:\Windows\System32;C:\Windows;%PATH%"
- - set MSYSTEM=MINGW64
# update mysy2
- C:\msys64\usr\bin\bash -lc "pacman --needed --noconfirm -Sy pacman-mirrors"
- C:\msys64\usr\bin\bash -lc "pacman --noconfirm -Sy"
- # this crashes?
- #- C:\msys64\usr\bin\bash -lc "pacman --noconfirm -S mingw-w64-i686-toolchain"
- C:\msys64\usr\bin\bash -lc "pacman --noconfirm -S autoconf automake bison flex"
- # install oniguruma
- C:\msys64\usr\bin\bash -lc "pacman --noconfirm -S mingw-w64-i686-oniguruma mingw-w64-x86_64-oniguruma"
@@ -22,6 +20,7 @@ build_script:
- 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"
+ - file jq.exe
test_script:
- echo not run?