appveyor.yml 480 B

1234567891011121314151617181920212223242526
  1. # can use variables like {build} and {branch}
  2. version: 1.0.{build}
  3. image: Visual Studio 2017
  4. environment:
  5. BUILD_DIR: "%APPVEYOR_BUILD_FOLDER%\\build"
  6. CTEST_OUTPUT_ON_FAILURE: 1
  7. platform:
  8. - Win32
  9. configuration:
  10. - Debug
  11. before_build:
  12. - cd %BUILD_DIR%
  13. - cmake .. -DBUILD_TESTING=ON -DBUILD_LIB=ON -DCMAKE_CXX_FLAGS=/W1 -G"Visual Studio 15 2017"
  14. after_build:
  15. - ctest --timeout 5 -C Debug -j4
  16. build:
  17. parallel: true
  18. project: build/entt.sln
  19. verbosity: minimal