aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorBrent Cook <bcook@openbsd.org>2015-09-09 06:12:16 -0500
committerBrent Cook <bcook@openbsd.org>2015-09-09 06:12:16 -0500
commit5de4c4f0eb9bdcc1dbdadc4aafb4cc89083835a0 (patch)
tree3e7cff4ef7070893b7e38ec25e41bb2888992e7d /.travis.yml
parent5dc630371487d483a53f1ed7193ba8e8c73492a2 (diff)
downloadportable-5de4c4f0eb9bdcc1dbdadc4aafb4cc89083835a0.tar.gz
portable-5de4c4f0eb9bdcc1dbdadc4aafb4cc89083835a0.tar.bz2
portable-5de4c4f0eb9bdcc1dbdadc4aafb4cc89083835a0.zip
add travis-ci cmake tests
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml46
1 files changed, 26 insertions, 20 deletions
diff --git a/.travis.yml b/.travis.yml
index 2fce9df..1a767b3 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,24 +1,30 @@
1language: c 1language: c
2matrix: 2matrix:
3 include: 3 include:
4 - compiler: clang 4 - compiler: clang
5 os: osx 5 os: osx
6 env: ARCH=native 6 env: ARCH=native
7 - compiler: gcc 7 - compiler: gcc
8 os: osx 8 os: osx
9 env: ARCH=native 9 env: ARCH=native
10 - compiler: clang 10 - compiler: clang
11 os: linux 11 os: linux
12 env: ARCH=native 12 env: ARCH=native
13 - compiler: gcc 13 - compiler: gcc
14 os: linux 14 os: linux
15 env: ARCH=native 15 env: ARCH=native
16 - compiler: gcc 16 - compiler: gcc
17 os: linux 17 os: linux
18 env: ARCH=mingw32 18 env: ARCH=mingw32
19 - compiler: gcc 19 - compiler: gcc
20 os: linux 20 os: linux
21 env: ARCH=mingw64 21 env: ARCH=mingw64
22 22
23script: 23script:
24 "./scripts/travis" 24 "./scripts/travis"
25
26addons:
27 apt:
28 packages:
29 - cmake
30 - ninja-build