summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: bc2e98d)
raw | patch | inline | side by side (parent: bc2e98d)
author | Sebastian Harl <sh@tokkee.org> | |
Wed, 8 Jan 2014 10:10:41 +0000 (11:10 +0100) | ||
committer | Sebastian Harl <sh@tokkee.org> | |
Wed, 8 Jan 2014 10:10:41 +0000 (11:10 +0100) |
This allows for some more flexiblity.
.travis.yml | patch | blob | history | |
t/cibuild.sh | [new file with mode: 0755] | patch | blob |
diff --git a/.travis.yml b/.travis.yml
index f0a3403e855b8c4b7c03236eb6bae17310d63946..f544023a3f4b0e717ed6fcda5c58d681da693c91 100644 (file)
--- a/.travis.yml
+++ b/.travis.yml
- sudo apt-get install -qq check flex bison libtool
- sudo apt-get install -qq libdbi-dev libedit-dev libltdl-dev
- sudo pip install cpp-coveralls --use-mirrors
-before_script:
- - ./autogen.sh
-script: ./configure --enable-gcov CFLAGS="-O0 -Wno-sign-conversion" && make && make test
+script: ./t/cibuild.sh
after_success:
- coveralls --exclude t --verbose
branches:
diff --git a/t/cibuild.sh b/t/cibuild.sh
--- /dev/null
+++ b/t/cibuild.sh
@@ -0,0 +1,12 @@
+#! /bin/bash
+#
+# SysDB -- t/cibuild.sh
+#
+# Run a continuous integration build for the System DataBase.
+
+set -ex
+
+./autogen.sh
+./configure --enable-gcov CFLAGS="-O0 -Wno-sign-conversion"
+make clean all
+make test