diff options
author | Stephan Kulow <coolo@suse.de> | 2012-06-22 16:48:48 +0200 |
---|---|---|
committer | Stephan Kulow <coolo@suse.de> | 2012-06-22 17:04:31 +0200 |
commit | 25da1a708745143af53e570abca44f7cb8567292 (patch) | |
tree | e434061b37585b998e237f276570cc06282ede4e /.travis.yml | |
parent | bdb4bbc7aaa76f766c4b5ef028fb99baeb718638 (diff) | |
download | libsolv-25da1a708745143af53e570abca44f7cb8567292.tar.gz libsolv-25da1a708745143af53e570abca44f7cb8567292.tar.bz2 libsolv-25da1a708745143af53e570abca44f7cb8567292.zip |
add a travis.yml file so it's auto CIed on travis-ci.org
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..13b02bd --- /dev/null +++ b/.travis.yml @@ -0,0 +1,5 @@ +language: C +before_script: sudo apt-get install cmake +script: mkdir build && cd build && cmake -DDEBIAN=1 .. && make && make test + + |