mirror of
https://github.com/ChaiScript/ChaiScript.git
synced 2025-12-06 16:57:04 +08:00
* Update travis configuration. * Update GCC_VER in travis configuration. * Leave only Visual Studio 15 in Appveyor. * Travis - remove GCC_VER 4.9. * Travis - update clang-xcode. * Travis - update clang compiler. * Travis - downgrade clang compiler to 3.4. * Revert "Travis - downgrade clang compiler to 3.4." This reverts commit bd6698bccea9252dd00e8f28fb31334b0e3ea743. * Travis - clang-6.0 package and compiler. * Travis - remove (perhaps unnecessary) compiler option. * Travis - restore clang compiler option. * Update .travis.yml * Another attempt to fix Travis config for clang. * Another attempt to fix Travis config for clang. * Compiler package for clang. * Compiler package for clang. * Xcode 10. * Remove xcode from equation. * Force install clang-6.0. * Does it install these packages at all???. * Does it install these packages at all???. * Some appveyor fixes. * Update CMakeLists.txt Enforce C++17 standard * Update .travis.yml Restore xcode, block CLANG_VER. * experimental/variant for Apple compilers. * Remove OSX pipeline. * Remove OSX pipeline. * Attempt at fixing AppVeyor pipeline. * Restore proper VS version in AppVeyor configuration. * Revert preprocessor changes in json.hpp.
24 lines
511 B
YAML
24 lines
511 B
YAML
version: 6.1.x.{build}
|
|
image:
|
|
- Visual Studio 2017
|
|
environment:
|
|
matrix:
|
|
- VS_VERSION: "Visual Studio 15"
|
|
build_script:
|
|
- cmd: >-
|
|
mkdir build
|
|
|
|
cd build
|
|
|
|
cmake c:\Projects\chaiscript -G "%VS_VERSION%" -DBUILD_TESTING:BOOL=ON -DBUILD_MODULES:BOOL=ON
|
|
|
|
cmake --build . --config Debug
|
|
test_script:
|
|
- cmd: ctest -C Debug
|
|
notifications:
|
|
- provider: Webhook
|
|
url: https://webhooks.gitter.im/e/9ff725a985b5679d1d5d
|
|
on_build_success: true
|
|
on_build_failure: true
|
|
on_build_status_changed: false
|