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.

148 lines
4.2 KiB

5 years ago
5 years ago
  1. version: 'BSIPA-{branch}-{build}'
  2. environment:
  3. bsipa_version: '3.12.24'
  4. gh_token:
  5. secure: E42gl/yepETuoLSwbJZ1GmEIPK6cCJu6zkd59NA21XiICtEV6COOLW7aehi1tcVU
  6. do_deploy: true
  7. matrix:
  8. - BUILD_DOC: 'no'
  9. - BUILD_DOC: 'yes'
  10. pull_requests:
  11. do_not_increment_build_number: true
  12. install:
  13. - git submodule update --init --recursive
  14. - nuget restore
  15. - ps: |
  16. if (-Not $env:APPVEYOR_PULL_REQUEST_TITLE)
  17. {
  18. #git checkout $env:APPVEYOR_REPO_BRANCH -q
  19. choco install docfx -y
  20. }
  21. image: Visual Studio 2019
  22. configuration: Release
  23. platform:
  24. - x64-Net4
  25. - x86-Net4
  26. artifacts: # When Net3 is added, this will need to be moved to the for block to only run for Net4 builds
  27. - path: BSIPA-ModList/bin/Release
  28. name: ModList
  29. - path: BSIPA-Meta/bin/$(platform)/$(configuration)
  30. name: BSIPA-$(platform)
  31. matrix:
  32. exclude:
  33. # Don't exclude Release_Net4|x64
  34. - BUILD_DOC: 'yes' # Add one of these for most configuration sets, so we don't dupe
  35. platform: x86-Net4
  36. for:
  37. -
  38. matrix:
  39. except:
  40. - BUILD_DOC: 'yes'
  41. skip_tags: true
  42. -
  43. matrix:
  44. except:
  45. - BUILD_DOC: 'no'
  46. artifacts:
  47. environment:
  48. do_deploy: false
  49. skip_tags: false
  50. build_script:
  51. - ps: |
  52. if ($env:APPVEYOR_REPO_BRANCH -eq 'master')
  53. {
  54. cd docs
  55. function Git-Do {
  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. }
  65. function Do-DocFX
  66. {
  67. Add-Content link_branch.json "{`"_gitContribute`":{`"sourceBranch`":`"$env:APPVEYOR_REPO_COMMIT`",`"apiSpecFolder`":`"docs/override`"}}"
  68. & docfx metadata
  69. & docfx build --globalMetadataFiles link_branch.json @Args
  70. if ($lastexitcode -ne 0){
  71. throw [System.Exception] "docfx build failed with exit code $lastexitcode."
  72. }
  73. }
  74. if ($env:APPVEYOR_REPO_TAG -eq "true")
  75. { # Copy current site into tags
  76. & Do-DocFX
  77. & Git-Do
  78. cd origin_site # make things a bit easier
  79. $tagPath = "tags/$env:APPVEYOR_REPO_TAG_NAME"
  80. Move-Item ../_site $tagPath
  81. git add -A 2>&1
  82. git commit -q -a -m "Saved tag $env:APPVEYOR_REPO_TAG_NAME" 2>&1
  83. }
  84. elseif (-Not $env:APPVEYOR_PULL_REQUEST_TITLE)
  85. { # Generate docs
  86. & Do-DocFX
  87. & Git-Do
  88. Move-Item origin_site/.git _site
  89. Move-Item origin_site/tags _site
  90. CD _site
  91. git add -A 2>&1
  92. git commit -q -a -m "$env:APPVEYOR_REPO_COMMIT_MESSAGE -- Generated Docs" 2>&1
  93. }
  94. git push -q origin gh-pages 2>&1
  95. }
  96. branches:
  97. except:
  98. - gh-pages
  99. cache:
  100. - '%LocalAppData%\NuGet\v3-cache' # NuGet v3
  101. build:
  102. verbosity: normal
  103. project: BSIPA.sln
  104. deploy:
  105. - provider: GitHub
  106. release: BSIPA $(bsipa_version)-draft
  107. tag: $(bsipa_version)-d
  108. description: |
  109. **Build:** [$(bsipa_version)-$(APPVEYOR_BUILD_NUMBER)](https://ci.appveyor.com/project/nike4613/beatsaber-ipa-reloaded-9smsb/builds/$(APPVEYOR_BUILD_ID))
  110. **Latest Commit:** $(APPVEYOR_REPO_COMMIT)
  111. - `$(APPVEYOR_REPO_COMMIT_MESSAGE)`
  112. - `$(APPVEYOR_REPO_COMMIT_MESSAGE_EXTENDED)`
  113. auth_token:
  114. secure: KhF3q/zWEFwrW0QeZLqE3NAkWR4u9iVhsmcyzXvwwJ28fUy+MzW4CWBx3RxNM60t
  115. artifact: '/.*[^_]\.zip/'
  116. draft: true
  117. force_update: true
  118. on:
  119. branch: master
  120. APPVEYOR_REPO_TAG: false
  121. do_deploy: true