appveyor64.yml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. version: '{build}'
  2. os: 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-date-time:x64-windows
  27. vcpkg install boost-filesystem:x64-windows
  28. vcpkg install boost-format:x64-windows
  29. vcpkg install boost-iostreams: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 curl:x64-windows
  34. vcpkg install --recurse freetype:x64-windows
  35. vcpkg install glew:x64-windows
  36. vcpkg install libogg:x64-windows
  37. vcpkg install libraqm:x64-windows
  38. vcpkg install libvorbis:x64-windows
  39. vcpkg install openal-soft:x64-windows
  40. vcpkg install sdl2:x64-windows
  41. vcpkg install sdl2-image[libjpeg-turbo]:x64-windows
  42. git submodule update --init --recursive
  43. echo Running cmake ..
  44. 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%
  45. build:
  46. project: ALL_BUILD.vcxproj
  47. parallel: true
  48. verbosity: minimal
  49. after_build:
  50. - cmd: '"C:\Program Files (x86)\CMake\bin\cpack.exe"'
  51. test: off
  52. artifacts:
  53. - path: SuperTux-*
  54. name: setup
  55. deploy:
  56. - provider: GitHub
  57. description: 'SuperTux release'
  58. auth_token:
  59. secure: dsfeuV2aC3dINer3z3PdXnQF6AosFVRTp71hdsaGI+LbcTXfmkH0nmVfqH0Dznyv
  60. artifact: setup
  61. draft: true
  62. on:
  63. appveyor_repo_tag: true # deploy on tag push only
  64. - provider: S3
  65. access_key_id:
  66. secure: +cR4ZicEZHr0OiXAsitUhBL7PsqPzHQZb9q+IKK5P2o=
  67. secret_access_key:
  68. secure: Y3+rqowdiTkG3OgTUD1fb4mJzjb7jUKqCs3CKJuOy6WCHovLmw8ocemOsMyQ3WrR
  69. bucket: supertux-ci-downloads
  70. region: us-west-2
  71. artifact: setup
  72. folder: $(APPVEYOR_REPO_COMMIT)/appveyor/$(PLATFORM)/$(APPVEYOR_JOB_ID)/
  73. after_deploy:
  74. - ps: |
  75. Write-Output Get-FileHash SuperTux-*
  76. foreach ($path in get-ChildItem SuperTux-*) {
  77. $file = Get-Item $path;
  78. $url = "https://supertux-ci-downloads.s3-us-west-2.amazonaws.com/$($Env:APPVEYOR_REPO_COMMIT)/appveyor/$($Env:PLATFORM)/$($Env:APPVEYOR_JOB_ID)/$($file.Name)"
  79. $shasum = Get-FileHash $file -Algorithm SHA256
  80. $postParams = @{
  81. apikey=$Env:DOWNLOAD_APIKEY;
  82. size=$file.length;
  83. url=$url;
  84. branch=$Env:APPVEYOR_REPO_BRANCH;
  85. shasum = $shasum.Hash
  86. }
  87. Invoke-WebRequest -Uri https://download.supertux.org/submit.php -Method POST -Body $postParams
  88. }