Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/bareos/bareos.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoerg Steffens <joerg.steffens@bareos.com>2017-06-08 18:53:28 +0300
committerJoerg Steffens <joerg.steffens@bareos.com>2017-06-09 10:25:49 +0300
commitf7aa2c2879fc4cbd45b288d1443dc96bc3775377 (patch)
treef8e5954ec19c712681b53ae622c1386a693a56c3 /.travis.yml
parent57af612536172aca0ca86f44a275d59e20bcd77e (diff)
https://travis-ci.org: add missing dependency
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml7
1 files changed, 5 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 15dcd87cf..8d3476777 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -50,8 +50,11 @@ before_install:
# use files instead of shell variables, because travis has some problems supporting variables
- sudo apt-get -qq update
- dpkg-checkbuilddeps 2> /tmp/dpkg-builddeps || true
- - sed -e "s/.*:.*:\s//" -e "s/\s(.*//" /tmp/dpkg-builddeps > /tmp/build_depends
- - yes "" | sudo xargs --arg-file /tmp/build_depends apt-get -q --assume-no install
+ - cat /tmp/dpkg-builddeps
+ - sed -e "s/^.*:.*:\s//" -e "s/\s([^)]*)//g" /tmp/dpkg-builddeps > /tmp/build_depends
+ - echo "additional packages required for building:"; cat /tmp/build_depends
+ - yes "" | sudo xargs --arg-file /tmp/build_depends apt-get -q --assume-no install fakeroot
+ - dpkg -l
before_script:
# changelog file is required (and normally generated by OBS)