]> git.ipfire.org Git - thirdparty/krb5.git/commitdiff
Add .travis.yml 388/head
authorTom Yu <tlyu@mit.edu>
Wed, 30 Dec 2015 20:26:54 +0000 (15:26 -0500)
committerTom Yu <tlyu@mit.edu>
Thu, 7 Jan 2016 20:06:37 +0000 (15:06 -0500)
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 [new file with mode: 0644]

diff --git a/.travis.yml b/.travis.yml
new file mode 100644 (file)
index 0000000..a07af79
--- /dev/null
@@ -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