framework: ci: Add support for Travis CI

Future commits to ipmitool will be verified by Travis CI.
This commit adds a basic configuration for that purpose.
This commit is contained in:
Alexander Amelkin 2018-07-29 00:34:04 +03:00
parent 5c033c06ab
commit 6d6411d2fc

10
.travis.yml Normal file
View File

@ -0,0 +1,10 @@
language: C
sudo: enabled
before_install:
- sudo apt-get install -y libssl-dev
before_script:
- ./bootstrap
script:
- ./configure --enable-intf-dummy
- make
- sudo make install