-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix paths in travis Pass in a version to build add -e flag to all scripts fix syntax, add doxygen fix path passed to debian.sh Add devscripts to travis for debian building Add fakeroot and attempt to deploy the artifact Default to 0~dev0 if no tag is present, and deploy the correct artifact (maybe) Fix some paths, maybe Flip conditional Add graphviz to dependencies for doxygen
- Loading branch information
Showing
4 changed files
with
38 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#!/bin/bash -ex | ||
|
||
if [[ $TRAVIS_OS_NAME == 'osx' ]] | ||
then | ||
make bundle | ||
elif [[ $TRAVIS_OS_NAME == 'linux' ]] | ||
then | ||
if [[ -z "$TRAVIS_TAG" ]] | ||
then | ||
VERSION="0~dev1" | ||
else | ||
VERSION="$TRAVIS_TAG" | ||
fi | ||
|
||
deploy/debian.sh . deploy/build "$VERSION" 1 | ||
|
||
(cd build && make bundle) | ||
(cd build && make doxygen-doc) | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/bash -x | ||
#!/bin/bash -ex | ||
|
||
if [[ $TRAVIS_OS_NAME == 'osx' ]] | ||
then | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters