Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
language: c
script:
- gem install ronn
- ./script/bootstrap
- ./script/test
16 changes: 16 additions & 0 deletions script/bootstrap
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#!/bin/sh


if ! command -v ronn > /dev/null; then
echo "ronn(1) not found, install with \`gem install ronn\`"
exit 1
fi

if ! command -v autoreconf > /dev/null; then
echo "autoreconf(1) not found, install with your system's \`autoconf\` package"
exit 1
fi

autoreconf --install --warnings=all

./configure
8 changes: 8 additions & 0 deletions script/test
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/sh

if ! [ -e Makefile ]; then
echo "Makefile not found, have you run \`script/bootstrap\`?"
exit 1
fi

make check