appveyor.yml 688 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. branches:
  2. only:
  3. - master
  4. environment:
  5. matrix:
  6. # MSVC x86
  7. #- name: win32
  8. # platform: amd64_x86
  9. # suffix: msvc2015
  10. # MSVC x64
  11. # - name: win64
  12. # platform: amd64
  13. # suffix: msvc2015
  14. # MinGW
  15. - name: win32
  16. platform: mingw
  17. suffix: mingw
  18. init:
  19. - if %platform%==mingw set PATH=C:\MinGW\bin;%PATH%
  20. install:
  21. - set PATH=C:\MinGW\msys\1.0\bin;%PATH%
  22. - set PATH=C:\OpenSSL-Win32;%PATH%
  23. build_script:
  24. - dir C:\OpenSSL-Win32\include
  25. # - make
  26. - g++ SimpleYggGen.cpp -std=gnu++11 -lcrypto -lpthread -o SimpleYggGen.exe -IC:\OpenSSL-Win32\include
  27. after_build:
  28. - cmd: echo 'test'
  29. artifacts:
  30. - path: Output\*.exe
  31. - path: release
  32. type: zip