.appveyor.yml 457 B

123456789101112131415161718192021222324
  1. ## Operating System (VM environment) ##
  2. platform: x64
  3. image: Visual Studio 2017
  4. ## Install Script ##
  5. install:
  6. - set CYGWIN_ROOT=C:\cygwin64
  7. - set PATH=%CYGWIN_ROOT%\bin;%PATH%
  8. - bash --version
  9. - bash -c 'autoreconf --version'
  10. - bash -c 'make --version'
  11. ## Disable MSBuild (default) ##
  12. build: off
  13. ## Build Script ##
  14. build_script:
  15. - bash autogen.sh
  16. - bash configure
  17. - bash -c 'make'
  18. ## Test Script ##
  19. test_script:
  20. - bash -c 'make check'