Streamline pkg and travis CI:

* use tagged containers for pkg build
* update build images
* continue to build container images in pipeline, but allow
  failure (non-block)
* limit travis macos cache
* add vs2019 windows to travis
* remove xcode 9 travis build
* remove clang5/6 from CI and update min version of Clang required in
  cmake
* break windows CI build into stages to reduce timeouts
* update datelib
* add if condition to travis builds to allow commit message to limit
  builds by platform
This commit is contained in:
Mike Ellery
2019-11-07 13:17:05 -08:00
parent cd9732b47a
commit eb016456a1
35 changed files with 862 additions and 699 deletions

View File

@@ -1,4 +1,9 @@
cmake_minimum_required (VERSION 3.9.0)
if (POLICY CMP0074)
cmake_policy(SET CMP0074 NEW)
endif ()
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/Builds/CMake")
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/Builds/CMake/deps")
@@ -19,10 +24,6 @@ if (target)
endif ()
project (rippled)
if (POLICY CMP0074)
cmake_policy(SET CMP0074 NEW)
endif ()
include(RippledSanity)
include(RippledVersion)
include(RippledSettings)