aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRalf Habacker <ralf.habacker@freenet.de>2020-12-22 10:57:10 +0100
committerRalf Habacker <ralf.habacker@freenet.de>2020-12-22 12:35:19 +0100
commit38ea653d67b5476e51af0d05e15b744c663eed60 (patch)
tree6120dc2c7559ffe6c1e293935e326e51f6565b6a
parent1f0a9b1bd8672582c8e585fe909be71cb86dd262 (diff)
downloaddlfcn-win32-38ea653d67b5476e51af0d05e15b744c663eed60.tar.gz
dlfcn-win32-38ea653d67b5476e51af0d05e15b744c663eed60.tar.bz2
dlfcn-win32-38ea653d67b5476e51af0d05e15b744c663eed60.zip
Add cmake build support to travis CI
-rw-r--r--.travis.yml11
1 files changed, 11 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
index ebc6834..3584048 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -24,6 +24,17 @@ jobs:
24 packages: 24 packages:
25 - mingw32 25 - mingw32
26 - wine 26 - wine
27 env: ci_buildsys=cmake
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
31 - dist: trusty
32 compiler: i586-mingw32msvc-gcc
33 addons:
34 apt:
35 packages:
36 - mingw32
37 - wine
27 env: ci_buildsys=Makefile 38 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 39 # 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'" 40 before_script: "i586-mingw32msvc-gcc -v 2>&1 | grep -q -x 'Target: i586-mingw32msvc'"