Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enabled travis #26

Open
wants to merge 27 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Fixed .travis.yml
Tim Brown committed Sep 5, 2017
commit b44c153ca5356723321c298b264a6c26b2911ce3
7 changes: 3 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -3,9 +3,8 @@ env:
- BUILD_ENV="deb"

before_install:
- test $BUILD_ENV = "src" && exit 0
- test $BUILD_ENV = "deb" && sudo apt-get -qq update && sudo apt-get install -y devscripts debhelper automake
- if [ $BUILD_ENV = "deb" ]; then sudo apt-get -qq update; sudo apt-get install -y devscripts debhelper automake; fi

script:
- test $BUILD_ENV = "src" && autoreconf --force --install && ./configure && make
- test $BUILD_ENV = "deb" && autoreconf --force --install && tar zcvf "../yaptest_$(dpkg-parsechangelog -SVersion | cut -f 1 -d "-").orig.tar.gz" . --exclude debian --exclude .git && debuild -i -us -uc
- if [ $BUILD_ENV = "src" ]; then autoreconf --force --install; ./configure; make; fi
- if [ $BUILD_ENV = "deb" ]; then autoreconf --force --install; tar zcvf "../yaptest_$(dpkg-parsechangelog -SVersion | cut -f 1 -d "-").orig.tar.gz" . --exclude debian --exclude .git; debuild -i -us -uc; fi