krb5 commit: Add .travis.yml
Tom Yu
tlyu at mit.edu
Thu Jan 7 15:43:39 EST 2016
https://github.com/krb5/krb5/commit/09e8307da049cf90bb1f7b9b4b1608a0b9130fd9
commit 09e8307da049cf90bb1f7b9b4b1608a0b9130fd9
Author: Tom Yu <tlyu at mit.edu>
Date: Wed Dec 30 15:26:54 2015 -0500
Add .travis.yml
Do Travis CI testing with clang and gcc, on 64-bit Ubuntu Trusty.
Performance would probably be better using the container-based Travis
infrastructure, but that is currently limited to Precise, and we would
need some important apt packages whitelisted, e.g., dejagnu.
.travis.yml | 15 +++++++++++++++
1 files changed, 15 insertions(+), 0 deletions(-)
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..a07af79
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,15 @@
+language: c
+
+sudo: required
+
+dist: trusty
+
+compiler:
+ - clang
+ - gcc
+
+before_install:
+ - sudo apt-get update -qq
+ - sudo apt-get install -y bison dejagnu gettext keyutils ldap-utils libldap2-dev libkeyutils-dev libssl-dev python-cjson python-paste python-pyrad slapd tcl-dev tcsh
+
+script: cd src && autoreconf && ./configure --with-ldap && make && make check
More information about the cvs-krb5
mailing list