diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-10-04 11:25:57 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-10-04 12:23:23 +0300 |
commit | 7d187ee6dde63d63186aa32e230199c0e3f01a41 (patch) | |
tree | fc6aed6390413fae88a29ec7174505e744e51dfd | |
parent | cmake: fix install commands (diff) | |
download | winapi-utf8-7d187ee6dde63d63186aa32e230199c0e3f01a41.tar.gz winapi-utf8-7d187ee6dde63d63186aa32e230199c0e3f01a41.zip |
AppVeyor: use newer Boost on VS 2013
-rw-r--r-- | .appveyor.yml | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index 8dee20f..aa2da78 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -24,8 +24,10 @@ matrix: install: - git submodule update --init --recursive -build_script: +before_build: - '"%python_exe%" cmake\tools\clang-format.py' + +build_script: - cd cmake - >- "%python_exe%" -m project.ci.appveyor.cmake @@ -52,7 +54,16 @@ for: only: - image: Visual Studio 2013 environment: - appveyor_boost_root: C:\Libraries\boost_1_58_0 + boost_version: 1.59.0 + build_script: + - cd cmake + - '"%python_exe%" -m project.ci.appveyor.boost -- --with-test' + - >- + "%python_exe%" -m project.ci.appveyor.cmake + --install "%install_dir%" + --boost C:\Projects\boost + -- -D WINAPI_UTF8_ENABLE_TESTS=ON + - matrix: only: - image: Visual Studio 2015 |