summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLzu Tao <taolzu@gmail.com>2019-06-29 13:54:39 (GMT)
committerLzu Tao <taolzu@gmail.com>2019-06-29 13:54:39 (GMT)
commit84f98dd316e23fef5850645a0d7fc69ccff4c773 (patch)
tree322f9d575fca1fb22eff7f555719c5ba8ed5c1eb
parentff27a1572b830a82917eefc4008debc433f837d3 (diff)
downloadlz4-84f98dd316e23fef5850645a0d7fc69ccff4c773.zip
lz4-84f98dd316e23fef5850645a0d7fc69ccff4c773.tar.gz
lz4-84f98dd316e23fef5850645a0d7fc69ccff4c773.tar.bz2
meson: Rename options in travis config
-rw-r--r--.travis.yml30
1 files changed, 18 insertions, 12 deletions
diff --git a/.travis.yml b/.travis.yml
index ee643e5..ca5fff3 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -178,18 +178,24 @@ matrix:
compiler: clang
install:
- sudo apt-get install -qq python3 tree
- - travis_retry curl -o ~/ninja.zip -L 'https://github.com/ninja-build/ninja/releases/download/v1.9.0/ninja-linux.zip'
- && unzip ~/ninja.zip -d ~/.local/bin
- - travis_retry curl -o ~/get-pip.py 'https://bootstrap.pypa.io/get-pip.py'
- && python3 ~/get-pip.py --user
- && pip3 install --user meson
- script:
- - meson setup
- --buildtype=debug
- -Db_lundef=false
- -Dauto_features=enabled
- -Ddefault_library=both
- -Dbuild_{programs,contrib,tests,examples}=true
+ - |
+ travis_retry curl -o ~/ninja.zip -L 'https://github.com/ninja-build/ninja/releases/download/v1.9.0/ninja-linux.zip' &&
+ unzip ~/ninja.zip -d ~/.local/bin
+ - |
+ travis_retry curl -o ~/get-pip.py 'https://bootstrap.pypa.io/get-pip.py' &&
+ python3 ~/get-pip.py --user &&
+ pip3 install --user meson
+ script:
+ - |
+ meson setup \
+ --buildtype=debug \
+ -Db_lundef=false \
+ -Dauto_features=enabled \
+ -Ddefault_library=both \
+ -Dbin_programs=true \
+ -Dbin_contrib=true \
+ -Dbin_tests=true \
+ -Dbin_examples=true \
contrib/meson build
- pushd build
- DESTDIR=./staging ninja install