[libclc] 18/92: Add travis CI configuration file
Andreas Boll
aboll-guest at moszumanska.debian.org
Mon Nov 6 15:11:56 UTC 2017
This is an automated email from the git hooks/post-receive script.
aboll-guest pushed a commit to branch master
in repository libclc.
commit b9d0d3f4a8640f120e47966010b1d3d973251aa8
Author: Jan Vesely <jan.vesely at rutgers.edu>
Date: Wed Sep 20 17:28:58 2017 +0000
Add travis CI configuration file
Signed-off-by: Jan Vesely <jan.vesely at rutgers.edu>
git-svn-id: https://llvm.org/svn/llvm-project/libclc/trunk@313773 91177308-0d34-0410-b5e6-96231b3b80d8
---
.travis.yml | 42 ++++++++++++++++++++++++++++++++++++++++++
1 file changed, 42 insertions(+)
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..21be7b9
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,42 @@
+language: cpp
+
+sudo: false
+dist: trusty
+
+cache:
+ apt: true
+
+
+matrix:
+ include:
+ - env:
+ - LABEL="make gcc LLVM-4.0"
+ - LLVM_VERSION=4.0
+ - LLVM_CONFIG="llvm-config-${LLVM_VERSION}"
+ addons:
+ apt:
+ sources:
+ - llvm-toolchain-trusty-4.0
+ packages:
+ - libedit-dev
+ - g++-4.8
+ # From sources above
+ - llvm-4.0-dev
+ - clang-4.0
+ - env:
+ - LABEL="make gcc LLVM-5.0"
+ - LLVM_VERSION=5.0
+ - LLVM_CONFIG="llvm-config-${LLVM_VERSION}"
+ addons:
+ apt:
+ sources:
+ - llvm-toolchain-trusty-5.0
+ packages:
+ - libedit-dev
+ - g++-4.8
+ # From sources above
+ - llvm-5.0-dev
+ - clang-5.0
+
+script:
+ - $PYTHON ./configure.py --with-llvm-config=$LLVM_CONFIG --with-cxx-compiler=$CXX && make -j4
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-opencl/libclc.git
More information about the Pkg-opencl-commits
mailing list