1
0
mirror of synced 2025-04-20 11:47:43 +03:00

Merge pull request #99 from mrexodia/citests

travis and appveyor configuration
This commit is contained in:
yhirose 2019-01-11 18:30:28 -05:00 committed by GitHub
commit 5da41fb38f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 22 additions and 0 deletions

1
.gitignore vendored
View File

@ -23,3 +23,4 @@ Release
ipch ipch
*.dSYM *.dSYM
.* .*
!/.travis.yml

12
.travis.yml Normal file
View File

@ -0,0 +1,12 @@
# Environment
language: cpp
os: osx
# Compiler selection
compiler:
- clang
# Build/test steps
script:
- cd ${TRAVIS_BUILD_DIR}/test
- make all

9
appveyor.yml Normal file
View File

@ -0,0 +1,9 @@
version: 1.0.{build}
image: Visual Studio 2017
build_script:
- cmd: >-
cd test
msbuild.exe test.sln /verbosity:minimal /t:Build /p:Configuration=Debug;Platform=Win32
test_script:
- cmd: Debug\test.exe