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 /.appveyor.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 '.appveyor.yml')
-rw-r--r-- | .appveyor.yml | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index 4c59f4a..8ce20dc 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -22,12 +22,10 @@ install: - choco install make build_script: - - make simple - - make static - - make dynamic + - make -f .ci/Makefile simple + - make -f .ci/Makefile static + - make -f .ci/Makefile dynamic - - make boost/58 - - - make boost/72 - - - make boost/65 + - make -f .ci/Makefile boost/58 + - make -f .ci/Makefile boost/72 + - make -f .ci/Makefile boost/65 |