diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-02-02 14:11:15 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-02-02 14:11:15 +0300 |
commit | e982dcf32672453f6ac22d59325260504cb130ea (patch) | |
tree | b9381b7d4c502071a2e1835c18b65748cf1a2e13 /.travis.yml | |
parent | Makefile: get rid of TRAVIS_BUILD_DIR where unnecessary (diff) | |
download | cmake-common-e982dcf32672453f6ac22d59325260504cb130ea.tar.gz cmake-common-e982dcf32672453f6ac22d59325260504cb130ea.zip |
move Makefile to .ci/
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/.travis.yml b/.travis.yml index 8a48951..675a929 100644 --- a/.travis.yml +++ b/.travis.yml @@ -28,18 +28,18 @@ jobs: - name: Simple CMake projects script: - - make simple - - make static - - make dynamic + - make -f .ci/Makefile simple + - make -f .ci/Makefile static + - make -f .ci/Makefile dynamic - name: Boost 1.58 - script: make boost/58 + script: make -f .ci/Makefile boost/58 - name: Boost 1.72 - script: make boost/72 + script: make -f .ci/Makefile boost/72 - name: Boost 1.65 - script: make boost/65 + script: make -f .ci/Makefile boost/65 env: travis_boost_version: 1.65.0 configuration: MinSizeRel |