diff options
author | MarcoFalke <falke.marco@gmail.com> | 2020-08-30 19:27:07 +0200 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2020-08-30 19:27:09 +0200 |
commit | 6eb97fb82382e8be7166e293887afbca3d4af40a (patch) | |
tree | f616b0fab1f75e3e93a6b600fedd5aac0975d4a3 | |
parent | 4631dc5c578475fd3ca7a91676f7daf788a11192 (diff) | |
parent | 3ec8f4c080eab61563f11659c5f1370a34b77dc5 (diff) |
Merge #19839: Set appveyor VM version to previous Visual Studio 2019 release
3ec8f4c080eab61563f11659c5f1370a34b77dc5 Set appveyor vm version to previous Visual Studio 2019 release. (Aaron Clauson)
Pull request description:
The Visual Studio 2019 Appveyor [update](https://www.appveyor.com/updates/2020/08/29/) includes a bump of `cmake` to `3.18.2`.
The `berkeleydb` dependency from the pegged `vcpkg` commit now fails to build with the `cmake` update.
Setting the Appveyor VM back to the previous version should fix the immediate issue while a solution is identified for updating the `berkeleydb` build configuration.
ACKs for top commit:
hebasto:
ACK 3ec8f4c080eab61563f11659c5f1370a34b77dc5, AppVeyor build is ok now.
Tree-SHA512: 61e10d0260c1c51dc6c552c857b3013f55ee324e26b1229bf7ef6f14c3e296762148db66a994ecc33fdc43e81592a7f8442d17b407964edb774b482d84735757
-rw-r--r-- | .appveyor.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index 7dcf9388b9..540d06b0c8 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -1,6 +1,6 @@ version: '{branch}.{build}' skip_tags: true -image: Visual Studio 2019 +image: Previous Visual Studio 2019 configuration: Release platform: x64 clone_depth: 5 |