Skip to content

Commit

Permalink
Add appveyor.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
glenfe committed Jun 11, 2017
1 parent 5b41d6f commit 72f11f9
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions appveyor.yml
@@ -0,0 +1,34 @@
# Copyright 2017 Glen Joseph Fernandes
# (glenjofe@gmail.com)
#
# Distributed under the Boost Software License, Version 1.0.
# (http://www.boost.org/LICENSE_1_0.txt)

version: 1.0.{build}-{branch}

shallow_clone: true

branches:
only:
- master
- develop

install:
- git clone -b %APPVEYOR_REPO_BRANCH% https://github.com/boostorg/boost
- cd boost
- git submodule init libs/assert
- git submodule init libs/config
- git submodule init libs/core
- git submodule init libs/static_assert
- git submodule init libs/throw_exception
- git submodule init tools/build
- git submodule update
- xcopy /s /e /q %APPVEYOR_BUILD_FOLDER%\include libs\align\include\
- xcopy /s /e /q %APPVEYOR_BUILD_FOLDER%\test libs\align\test\
- bootstrap
- b2 headers

build: off

test_script:
- b2 libs/align/test toolset=msvc-9.0,msvc-10.0,msvc-11.0,msvc-14.0

0 comments on commit 72f11f9

Please sign in to comment.