Build debs also during our travis job
This commit is contained in:
parent
7dc4a1b487
commit
525d37b9db
1 changed files with 15 additions and 5 deletions
|
|
@ -40,14 +40,24 @@ apt-get clean
|
|||
|
||||
cd /anbox
|
||||
|
||||
# In cases where anbox comes directly from a checked out Android
|
||||
# build environment we miss some symlinks which are present on
|
||||
# the host and don't have a valid git repository in that case.
|
||||
git clean -fdx . || true
|
||||
git reset --hard || true
|
||||
cleanup() {
|
||||
# In cases where anbox comes directly from a checked out Android
|
||||
# build environment we miss some symlinks which are present on
|
||||
# the host and don't have a valid git repository in that case.
|
||||
git clean -fdx . || true
|
||||
git reset --hard || true
|
||||
}
|
||||
|
||||
cleanup
|
||||
|
||||
mkdir build || rm -rf build/*
|
||||
cd build
|
||||
cmake ..
|
||||
make -j10
|
||||
make test
|
||||
|
||||
cleanup
|
||||
|
||||
apt-get install -y build-essential curl devscripts gdebi-core
|
||||
apt-get install -y $(gdebi --quiet --apt-line ./debian/control)
|
||||
debuild -us -uc
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue