Skip to content

Commit

Permalink
travis and appveyor configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
mrexodia committed Oct 14, 2018
1 parent d32eee7 commit f88ab8a
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,4 @@ Release
ipch
*.dSYM
.*
!/.travis.yml
12 changes: 12 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -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 changes: 9 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit f88ab8a

Please sign in to comment.