diff options
author | Pali Rohár <pali.rohar@gmail.com> | 2020-12-12 01:02:47 +0100 |
---|---|---|
committer | Pali Rohár <pali.rohar@gmail.com> | 2020-12-12 01:02:47 +0100 |
commit | 3cddb7b9a1df284dfca0b41eb171e4c0b6d8f5d9 (patch) | |
tree | 6258628fbf1e457c72909ab1d7af399e4789d2a9 | |
parent | 008df693cf5a71b8f1db87731a7b5af87400e5dd (diff) | |
download | dlfcn-win32-3cddb7b9a1df284dfca0b41eb171e4c0b6d8f5d9.tar.gz dlfcn-win32-3cddb7b9a1df284dfca0b41eb171e4c0b6d8f5d9.tar.bz2 dlfcn-win32-3cddb7b9a1df284dfca0b41eb171e4c0b6d8f5d9.zip |
Run Travis tests also under i586-mingw32msvc-gcc compiler
Beware that i586-mingw32msvc-gcc is sometimes just a symlink to
i686-w64-mingw32-gcc. Real i586-mingw32msvc-gcc compiler is available in
mingw32 package only in dist trusty.
-rw-r--r-- | .travis.yml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 4df8ce7..ebc6834 100644 --- a/.travis.yml +++ b/.travis.yml | |||
@@ -15,5 +15,18 @@ env: | |||
15 | - ci_buildsys=cmake | 15 | - ci_buildsys=cmake |
16 | - ci_buildsys=Makefile | 16 | - ci_buildsys=Makefile |
17 | 17 | ||
18 | jobs: | ||
19 | include: | ||
20 | - dist: trusty | ||
21 | compiler: i586-mingw32msvc-gcc | ||
22 | addons: | ||
23 | apt: | ||
24 | packages: | ||
25 | - mingw32 | ||
26 | - wine | ||
27 | env: ci_buildsys=Makefile | ||
28 | # Check that we have a real i586-mingw32msvc-gcc compiler as sometimes it is just a symlink to i686-w64-mingw32-gcc | ||
29 | before_script: "i586-mingw32msvc-gcc -v 2>&1 | grep -q -x 'Target: i586-mingw32msvc'" | ||
30 | |||
18 | script: | 31 | script: |
19 | - ci_target=${CC%-*} ./tools/ci-build.sh | 32 | - ci_target=${CC%-*} ./tools/ci-build.sh |