From 0c4a3d4ee947637e8289fd04ae8e8fd9534b30dc Mon Sep 17 00:00:00 2001 From: Edward Diener Date: Mon, 9 Oct 2017 08:14:35 -0400 Subject: [PATCH 1/2] Added Appveyor file and Travis CI file. --- .travis.yml | 40 ++++++++++++++++++++++++++++++++++++++++ appveyor.yml | 29 +++++++++++++++++++++++++++++ 2 files changed, 69 insertions(+) create mode 100644 .travis.yml create mode 100644 appveyor.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..fdb3c64 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,40 @@ +# Copyright 2017 Edward Diener +# Distributed under the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or copy at http://boost.org/LICENSE_1_0.txt) + +language: cpp + +sudo: false + +python: "2.7" + +os: + - linux + - osx + +branches: + only: + - master + - develop + +install: + - cd .. + - git clone -b $TRAVIS_BRANCH --depth 1 https://github.com/boostorg/boost.git boost-root + - cd boost-root + - git submodule update --init --depth 1 tools/build + - git submodule update --init --depth 1 libs/config + - git submodule update --init --depth 1 tools/boostdep + - cp -r $TRAVIS_BUILD_DIR/* libs/io + - python tools/boostdep/depinst/depinst.py io + - ./bootstrap.sh + - ./b2 headers + +script: + - TOOLSET=gcc,clang + - if [ $TRAVIS_OS_NAME == osx ]; then TOOLSET=clang; fi + - ./b2 --verbose-test libs/config/test//config_info toolset=$TOOLSET || true + - ./b2 libs/io/test toolset=$TOOLSET + +notifications: + email: + on_success: always diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..4fc7524 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,29 @@ +# Copyright 2017 Edward Diener +# Distributed under the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or copy at http://boost.org/LICENSE_1_0.txt) + +version: 1.0.{build}-{branch} + +shallow_clone: true + +branches: + only: + - master + - develop + +install: + - cd .. + - git clone -b %APPVEYOR_REPO_BRANCH% https://github.com/boostorg/boost.git boost-root + - cd boost-root + - git submodule update --init tools/build + - git submodule update --init libs/config + - git submodule update --init tools/boostdep + - xcopy /s /e /q %APPVEYOR_BUILD_FOLDER% libs\io + - python tools/boostdep/depinst/depinst.py io + - bootstrap + - b2 headers + +build: off + +test_script: + - b2 libs/io/test toolset=msvc-9.0,msvc-10.0,msvc-11.0,msvc-12.0,msvc-14.0,msvc-14.1 From c63b43c9d8d5f4782d87268f8c75978e846e0af8 Mon Sep 17 00:00:00 2001 From: Edward Diener Date: Mon, 9 Oct 2017 12:06:51 -0400 Subject: [PATCH 2/2] Better appveyor file setup. --- appveyor.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 4fc7524..b1857e3 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -11,6 +11,13 @@ branches: - master - develop +environment: + matrix: + - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015 + TOOLSET: msvc-9.0,msvc-10.0,msvc-11.0,msvc-12.0,msvc-14.0 + - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 + TOOLSET: msvc-14.1 + install: - cd .. - git clone -b %APPVEYOR_REPO_BRANCH% https://github.com/boostorg/boost.git boost-root @@ -26,4 +33,4 @@ install: build: off test_script: - - b2 libs/io/test toolset=msvc-9.0,msvc-10.0,msvc-11.0,msvc-12.0,msvc-14.0,msvc-14.1 + - b2 libs/io/test toolset=%TOOLSET%