summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorTakayuki MATSUOKA <takayuki.matsuoka@gmail.com>2014-04-16 13:25:18 (GMT)
committerTakayuki MATSUOKA <takayuki.matsuoka@gmail.com>2014-04-16 13:25:18 (GMT)
commita674c55bd924b8d0a4cd8087aadac115afd294ad (patch)
treeabee2252c1a8c95875914abe2cad8099f18d33e4 /.travis.yml
parente63b1478b891897345bb1b6275e9d54427cf3560 (diff)
downloadlz4-a674c55bd924b8d0a4cd8087aadac115afd294ad.zip
lz4-a674c55bd924b8d0a4cd8087aadac115afd294ad.tar.gz
lz4-a674c55bd924b8d0a4cd8087aadac115afd294ad.tar.bz2
Add .travis.yml
.travis.yml in this commit means (1) Language is C. (2) Compiler is 'gcc' (3) Before testing, Travis-CI VM install 'gcc-multilib' for 32bit executables. (4) Travis-CI invokes 'make test'. See also : Getting started http://docs.travis-ci.com/user/getting-started/ Configuring your build http://docs.travis-ci.com/user/build-configuration/ Building a C Project http://docs.travis-ci.com/user/build-configuration/
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml6
1 files changed, 6 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..695c19f
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,6 @@
+language: c
+compiler: gcc
+script: make test
+before_install:
+ - sudo apt-get update -qq
+ - sudo apt-get install -qq gcc-multilib