appveyor64.yml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. version: '{build}'
  2. os: Previous Visual Studio 2019
  3. configuration: Release
  4. platform: x64
  5. environment:
  6. DOWNLOAD_APIKEY:
  7. secure: SEKmgfhiwujukYrr2xjqp63FEwvDUcoQOy7pCuYSyu+CTbGRRIzTbUCwwu4EPJmE
  8. APPVEYOR_SAVE_CACHE_ON_ERROR: true
  9. branches:
  10. except:
  11. - coverity_scan # No need for Windows builds on that branch
  12. skip_commits:
  13. message: /\[(skip ci)|(ci skip)\]/
  14. cache: c:\tools\vcpkg\installed -> appveyor64.yml
  15. install:
  16. - cd C:\Tools\vcpkg
  17. - git pull
  18. - .\bootstrap-vcpkg.bat
  19. - cd %APPVEYOR_BUILD_FOLDER%
  20. before_build:
  21. - cmd: |
  22. echo Installing dependencies...
  23. vcpkg integrate install
  24. copy /y mk\vcpkg\openal-soft\portfile.cmake C:\tools\vcpkg\ports\openal-soft\
  25. copy mk\cmake\x64-windows.cmake C:\tools\vcpkg\triplets\
  26. vcpkg install boost-asio:x64-windows
  27. vcpkg install boost-date-time:x64-windows
  28. vcpkg install boost-filesystem:x64-windows
  29. vcpkg install boost-format:x64-windows
  30. vcpkg install boost-locale:x64-windows
  31. vcpkg install boost-optional:x64-windows
  32. vcpkg install boost-system:x64-windows
  33. vcpkg install boost-uuid:x64-windows
  34. vcpkg install curl:x64-windows
  35. vcpkg install --recurse freetype:x64-windows
  36. vcpkg install glew:x64-windows
  37. vcpkg install libogg:x64-windows
  38. vcpkg install libraqm:x64-windows
  39. vcpkg install libvorbis:x64-windows
  40. vcpkg install openal-soft:x64-windows
  41. vcpkg install sdl2:x64-windows
  42. vcpkg install sdl2-image[libjpeg-turbo]:x64-windows
  43. git submodule update --init --recursive
  44. echo Running cmake ..
  45. cmake -G "Visual Studio 16 2019" -A x64 -DVCPKG_BUILD=ON -DCMAKE_TOOLCHAIN_FILE=c:/tools/vcpkg/scripts/buildsystems/vcpkg.cmake -DCMAKE_INSTALL_PREFIX=%P% -DHAVE_SDL=true -DPACKAGE_VCREDIST=true %APPVEYOR_BUILD_FOLDER%
  46. build:
  47. project: ALL_BUILD.vcxproj
  48. parallel: true
  49. verbosity: minimal
  50. after_build:
  51. - cmd: '"C:\Program Files (x86)\CMake\bin\cpack.exe"'
  52. test: off
  53. artifacts:
  54. - path: SuperTux-*
  55. name: setup
  56. deploy:
  57. - provider: GitHub
  58. description: 'SuperTux release'
  59. auth_token:
  60. secure: dsfeuV2aC3dINer3z3PdXnQF6AosFVRTp71hdsaGI+LbcTXfmkH0nmVfqH0Dznyv
  61. artifact: setup
  62. draft: true
  63. on:
  64. appveyor_repo_tag: true # deploy on tag push only
  65. - provider: S3
  66. access_key_id:
  67. secure: +cR4ZicEZHr0OiXAsitUhBL7PsqPzHQZb9q+IKK5P2o=
  68. secret_access_key:
  69. secure: Y3+rqowdiTkG3OgTUD1fb4mJzjb7jUKqCs3CKJuOy6WCHovLmw8ocemOsMyQ3WrR
  70. bucket: supertux-ci-downloads
  71. region: us-west-2
  72. artifact: setup
  73. folder: $(APPVEYOR_REPO_COMMIT)/appveyor/$(PLATFORM)/$(APPVEYOR_JOB_ID)/
  74. after_deploy:
  75. - ps: |
  76. Write-Output Get-FileHash SuperTux-*
  77. foreach ($path in get-ChildItem SuperTux-*) {
  78. $file = Get-Item $path;
  79. $url = "https://supertux-ci-downloads.s3-us-west-2.amazonaws.com/$($Env:APPVEYOR_REPO_COMMIT)/appveyor/$($Env:PLATFORM)/$($Env:APPVEYOR_JOB_ID)/$($file.Name)"
  80. $shasum = Get-FileHash $file -Algorithm SHA256
  81. $postParams = @{
  82. apikey=$Env:DOWNLOAD_APIKEY;
  83. size=$file.length;
  84. url=$url;
  85. branch=$Env:APPVEYOR_REPO_BRANCH;
  86. shasum = $shasum.Hash
  87. }
  88. Invoke-WebRequest -Uri https://download.supertux.org/submit.php -Method POST -Body $postParams
  89. }