btrfs-progs: ci: use helper script for default build commands
[platform/upstream/btrfs-progs.git] / .travis.yml
index 2aa44bd..e37bbc5 100644 (file)
@@ -27,7 +27,7 @@ cache:
   ccache: true
 
 git:
-  depth: 2
+  depth: 1
 
 dist: trusty
 group: unstable
@@ -39,6 +39,9 @@ branches:
   - master
   - release-test
 
+services:
+  - docker
+
 env:
   global:
    # The next declaration is the encrypted COVERITY_SCAN_TOKEN, created
@@ -49,6 +52,7 @@ 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 acl attr reiserfsprogs
   - echo -n | openssl s_client -connect scan.coverity.com:443 | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' | sudo tee -a /etc/ssl/certs/ca-
+  - docker pull kdave/ci-musl-x86_64
   - "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;
@@ -59,7 +63,16 @@ before_install:
      sudo make install;
      cd ../..
     "
-  - "./autogen.sh && ./configure --disable-documentation && make"
+  - "mkdir tmp-zstd;
+     cd tmp-zstd;
+     wget https://github.com/facebook/zstd/archive/v1.3.3.tar.gz;
+     tar xf v1.3.3.tar.gz;
+     cd zstd-1.3.3;
+     make;
+     sudo make install PREFIX=/usr;
+     cd ../..
+    "
+  - travis/build-default --disable-documentation
 
 addons:
   coverity_scan:
@@ -72,8 +85,13 @@ addons:
     branch_pattern: coverity_scan
 
 script:
-  - "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"
-  - "if ./travis-should-run-test; then make TEST_LOG=dump test-misc; fi"
+  # quick build tests
+  - "if travis/should-run-test; then docker run -it kdave/ci-musl-x86_64 ./test-build $TRAVIS_BRANCH --disable-documentation --disable-backtrace; fi"
+  # real tests
+  - "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"
+  - "if travis/should-run-test; then make TEST_LOG=dump TEST_ENABLE_OVERRIDE=true TEST_ARGS_CHECK=--mode=lowmem test-check; fi"
+  - "if travis/should-run-test; then make TEST_LOG=dump test-misc; fi"
+  # long running tests
   - "if [ $TRAVIS_BRANCH = release-test ]; then make TEST_LOG=dump test-convert; fi"