diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-01-09 02:58:14 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-01-09 03:01:42 +0300 |
commit | 9924b11ff84ae1e2f247d8cd81a66c00f5569f8b (patch) | |
tree | 142e2c2254bff0850914c845c9b44b84201e9260 /.travis.yml | |
parent | update cmake-common (diff) | |
download | aes-tools-9924b11ff84ae1e2f247d8cd81a66c00f5569f8b.tar.gz aes-tools-9924b11ff84ae1e2f247d8cd81a66c00f5569f8b.zip |
update cmake-common
Diffstat (limited to '')
-rw-r--r-- | .travis.yml | 33 |
1 files changed, 16 insertions, 17 deletions
diff --git a/.travis.yml b/.travis.yml index fe372b2..7047131 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,22 +18,21 @@ env: - configuration=Release platform=x64 before_script: - - |- - ./cmake/ci/boost/build_travis.py \ - -- \ - link=static \ - target-os=windows \ - --user-config="$TRAVIS_BUILD_DIR/cmake/toolchains/boost/mingw-w64-$platform.jam" \ - --with-filesystem \ - --with-program_options \ - --with-system + - >- + ./cmake/boost/build/ci/travis.py + --link static + -- + target-os=windows + --user-config="$TRAVIS_BUILD_DIR/cmake/boost/toolchains/mingw-w64-$platform.jam" + --with-filesystem + --with-program_options + --with-system script: - - |- - ./cmake/ci/build_travis.py \ - --install "$HOME/install" \ - -- \ - -D "BOOST_ROOT=$HOME/boost_1_71_0" \ - -D "BOOST_LIBRARYDIR=$HOME/boost_1_71_0/stage/$platform/$configuration/lib" \ - -D "CMAKE_TOOLCHAIN_FILE=cmake/toolchains/mingw-w64-$platform.cmake" \ - -D CMAKE_SYSTEM_NAME=Windows + - >- + ./cmake/cmake/build/ci/travis.py + --install "$HOME/install" + -- + -D "CMAKE_TOOLCHAIN_FILE=cmake/cmake/toolchains/mingw-w64-$platform.cmake" + -D "BOOST_ROOT=$HOME/boost_1_71_0" + -D "BOOST_LIBRARYDIR=$HOME/boost_1_71_0/stage/$platform/$configuration/lib" |