summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Sterba <dsterba@suse.com>2017-08-29 16:16:44 +0200
committerDavid Sterba <dsterba@suse.com>2017-09-08 16:15:05 +0200
commit1d5f84831ce45da555487f331307597fe8ba5c11 (patch)
tree5f2b439b92f6353897ce79187c3af8c53a7ad49f
parent72fbe845d4fdd063260a6a43ac0b27cd43b0e301 (diff)
btrfs-progs: tests: build preparation phases out of script section
The logs of before_install are folded and we don't need to see the details, unlike the test logs. Signed-off-by: David Sterba <dsterba@suse.com>
-rw-r--r--.travis.yml22
1 files changed, 11 insertions, 11 deletions
diff --git a/.travis.yml b/.travis.yml
index b5cc7fe3..bc2c1a5b 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -49,6 +49,17 @@ before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq e2fslibs-dev gcc libacl1-dev libblkid-dev liblzo2-dev make pkg-config udev zlib1g-dev
- echo -n | openssl s_client -connect scan.coverity.com:443 | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' | sudo tee -a /etc/ssl/certs/ca-
+ - "mkdir tmp-reiser;
+ cd tmp-reiser;
+ wget https://www.kernel.org/pub/linux/kernel/people/jeffm/reiserfsprogs/v3.6.27/reiserfsprogs-3.6.27.tar.xz;
+ tar xf reiserfsprogs-3.6.27.tar.xz;
+ cd reiserfsprogs-3.6.27;
+ ./configure --prefix=/usr;
+ make all;
+ sudo make install;
+ cd ../..
+ "
+ - "./autogen.sh && ./configure --disable-documentation && make"
addons:
coverity_scan:
@@ -61,17 +72,6 @@ addons:
branch_pattern: coverity_scan
script:
- - "mkdir tmp-reiser;
- cd tmp-reiser;
- wget https://www.kernel.org/pub/linux/kernel/people/jeffm/reiserfsprogs/v3.6.27/reiserfsprogs-3.6.27.tar.xz;
- tar xf reiserfsprogs-3.6.27.tar.xz;
- cd reiserfsprogs-3.6.27;
- ./configure --prefix=/usr;
- make all;
- sudo make install;
- cd ../..
- "
- - "./autogen.sh && ./configure --disable-documentation && make"
- "if ./travis-should-run-test; then make TEST_LOG=dump test-cli; fi"
- "if ./travis-should-run-test; then make TEST_LOG=dump test-mkfs; fi"
- "if ./travis-should-run-test; then make TEST_LOG=dump test-check; fi"