You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

97 lines
3.5 KiB

5 years ago
5 years ago
  1. version: 'BSIPA-{branch}-{build}'
  2. environment:
  3. bsipa_version: '3.12.21'
  4. gh_token:
  5. secure: E42gl/yepETuoLSwbJZ1GmEIPK6cCJu6zkd59NA21XiICtEV6COOLW7aehi1tcVU
  6. pull_requests:
  7. do_not_increment_build_number: true
  8. install:
  9. - git submodule update --init --recursive
  10. - nuget restore
  11. - ps: |
  12. if (-Not $env:APPVEYOR_PULL_REQUEST_TITLE)
  13. {
  14. git checkout $env:APPVEYOR_REPO_BRANCH -q
  15. choco install docfx -y
  16. }
  17. image: Visual Studio 2017
  18. configuration: Release
  19. platform: x64
  20. branches:
  21. except:
  22. - gh-pages
  23. cache:
  24. - '%LocalAppData%\NuGet\v3-cache' # NuGet v3
  25. artifacts:
  26. - path: IPA/bin/$(configuration)
  27. name: BSIPA
  28. - path: BSIPA-ModList/bin/$(configuration)
  29. name: ModList
  30. build:
  31. verbosity: normal
  32. project: BSIPA.sln
  33. skip_tags: false
  34. deploy:
  35. - provider: GitHub
  36. release: BSIPA $(bsipa_version)-draft
  37. tag: $(bsipa_version)-d
  38. description: |
  39. **Build:** [$(bsipa_version)-$(APPVEYOR_BUILD_NUMBER)](https://ci.appveyor.com/project/nike4613/beatsaber-ipa-reloaded-9smsb/builds/$(APPVEYOR_BUILD_ID)) [$(configuration)|$(platform)]
  40. **Latest Commit:** $(APPVEYOR_REPO_COMMIT)
  41. - `$(APPVEYOR_REPO_COMMIT_MESSAGE)`
  42. - `$(APPVEYOR_REPO_COMMIT_MESSAGE_EXTENDED)`
  43. auth_token:
  44. secure: KhF3q/zWEFwrW0QeZLqE3NAkWR4u9iVhsmcyzXvwwJ28fUy+MzW4CWBx3RxNM60t
  45. artifact: /.*\.zip/
  46. draft: true
  47. force_update: true
  48. on:
  49. branch: master
  50. APPVEYOR_REPO_TAG: false
  51. before_deploy:
  52. - ps: |
  53. if ($env:APPVEYOR_REPO_BRANCH -eq 'master')
  54. {
  55. cd docs
  56. git config --global core.autocrlf true
  57. git config --global credential.helper store
  58. Add-Content "$HOME\.git-credentials" "https://$($env:gh_token):[email protected]`n"
  59. git config --global user.email $env:APPVEYOR_REPO_COMMIT_AUTHOR_EMAIL
  60. git config --global user.name $env:APPVEYOR_REPO_COMMIT_AUTHOR
  61. git clone -q "https://github.com/beat-saber-modding-group/BeatSaber-IPA-Reloaded.git" -b gh-pages origin_site
  62. if (-Not (Test-Path origin_site/tags))
  63. { New-Item -ItemType directory -Path origin_site/tags }
  64. if ($env:APPVEYOR_REPO_TAG -eq "true")
  65. { # Copy current site into tags
  66. cd origin_site # make things a bit easier
  67. $tagPath = "tags/$env:APPVEYOR_REPO_TAG_NAME"
  68. New-Item -ItemType directory -Path $tagPath
  69. Copy-Item * $tagPath -Exclude ".git,tags" -Recurse
  70. cd .. # fix working directory
  71. git add -A 2>&1
  72. git commit -q -a -m "Saved tag $env:APPVEYOR_REPO_TAG_NAME" 2>&1
  73. }
  74. elseif (-Not $env:APPVEYOR_PULL_REQUEST_TITLE)
  75. { # Generate docs
  76. Add-Content link_branch.json "{`"_gitContribute`":{`"sourceBranch`":`"$env:APPVEYOR_REPO_COMMIT`",`"apiSpecFolder`":`"docs/override`"}}"
  77. & docfx metadata
  78. & docfx build --globalMetadataFiles link_branch.json
  79. if ($lastexitcode -ne 0){
  80. throw [System.Exception] "docfx build failed with exit code $lastexitcode."
  81. }
  82. Move-Item origin_site/.git _site
  83. Move-Item origin_size/tags _site
  84. CD _site
  85. git add -A 2>&1
  86. git commit -q -a -m "$env:APPVEYOR_REPO_COMMIT_MESSAGE -- Generated Docs" 2>&1
  87. }
  88. git push -q origin gh-pages 2>&1
  89. }