.appveyor.yml 653 B

1234567891011121314151617181920212223242526272829
  1. clone_depth: 50
  2. image:
  3. - Visual Studio 2015
  4. - Visual Studio 2017
  5. environment:
  6. global:
  7. TESTS_REDUCED_KEYLENGTHS: yes
  8. LEAK_DETECTIVE: no
  9. MONOLITHIC: yes
  10. TZ: Europe/Zurich
  11. matrix:
  12. - arch: x86_64
  13. bits: 64
  14. # no 32-bit build as 32-bit msys is not installed
  15. #- arch: i686
  16. # bits: 32
  17. install:
  18. - set MSYS_SH=C:\msys%BITS%\usr\bin\sh.exe
  19. - set MSYSTEM=MINGW%BITS%
  20. - set TEST=win%BITS%
  21. build_script:
  22. - '%MSYS_SH% --login -c ". /etc/profile && cd $APPVEYOR_BUILD_FOLDER && ./scripts/test.sh deps"'
  23. test_script:
  24. - '%MSYS_SH% --login -c ". /etc/profile && cd $APPVEYOR_BUILD_FOLDER && ./scripts/test.sh"'