Skip to content
Snippets Groups Projects
Commit adb18d6a authored by Dilawar Singh's avatar Dilawar Singh
Browse files

standalone script to build travis.

parent 3551595b
No related branches found
No related tags found
No related merge requests found
......@@ -48,10 +48,4 @@ install:
- sudo ldconfig /usr/lib64
script:
- gbp buildpackage --git-ignore-branch --git-ignore-new -uc -us
- sudo dpkg -i ../moose*.deb
after_success:
- python -c 'import moose'
- python -c 'import moogli'
- cd __moose-core_build && ctest --output-on-failure
- ./.travis_build.sh
#!/bin/bash -
#===============================================================================
#
# FILE: .travis_build.sh
#
# USAGE: ./.travis_build.sh
#
# DESCRIPTION:
#
# OPTIONS: ---
# REQUIREMENTS: ---
# BUGS: ---
# NOTES: ---
# AUTHOR: Dilawar Singh (), dilawars@ncbs.res.in
# ORGANIZATION: NCBS Bangalore
# CREATED: 03/05/2018 03:49:35 PM
# REVISION: ---
#===============================================================================
set -o nounset # Treat unset variables as an error
set -e -x
PATH=/usr/bin:/usr/local/bin:$PATH
gbp buildpackage --git-ignore-branch --git-ignore-new -uc -us
sudo dpkg -i ../moose*.deb
python -c 'import moose'
python -c 'import moogli'
cd __moose-core_build && ctest --output-on-failure
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment