.travis.yml: Add to repository
This change makes it possible to tell Travis CI to trigger a build after every push and every time a new merge request is submitted. Signed-off-by: Bart Van Assche <bvanassche@acm.org>
This commit is contained in:
+21
@@ -0,0 +1,21 @@
|
|||||||
|
language: c
|
||||||
|
|
||||||
|
os:
|
||||||
|
- linux
|
||||||
|
- osx
|
||||||
|
|
||||||
|
addons:
|
||||||
|
apt:
|
||||||
|
packages:
|
||||||
|
- dpkg
|
||||||
|
- gcc
|
||||||
|
- libcunit1-dev
|
||||||
|
- libibverbs-dev
|
||||||
|
- librdmacm-dev
|
||||||
|
- make
|
||||||
|
- pkg-config
|
||||||
|
|
||||||
|
sudo: required
|
||||||
|
|
||||||
|
script:
|
||||||
|
ci/build.sh
|
||||||
Executable
+7
@@ -0,0 +1,7 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
./autogen.sh &&
|
||||||
|
./configure --enable-manpages --enable-test-tool --enable-tests \
|
||||||
|
--enable-examples &&
|
||||||
|
make &&
|
||||||
|
sudo make install
|
||||||
Reference in New Issue
Block a user