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.

155 lines
4.4 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. - path: docs/nuget
  32. name: nuget_debug_
  33. matrix:
  34. exclude:
  35. # Don't exclude Release_Net4|x64
  36. - BUILD_DOC: 'yes' # Add one of these for most configuration sets, so we don't dupe
  37. platform: x86-Net4
  38. before_build:
  39. - ps: |
  40. echo $env:Configuration $env:Platform $env:BuildingInsideVisualStudio
  41. for:
  42. -
  43. matrix:
  44. except:
  45. - BUILD_DOC: 'yes'
  46. skip_tags: true
  47. -
  48. matrix:
  49. except:
  50. - BUILD_DOC: 'no'
  51. artifacts:
  52. environment:
  53. do_deploy: false
  54. skip_tags: false
  55. build_script:
  56. - ps: |
  57. if ($env:APPVEYOR_REPO_BRANCH -eq 'master')
  58. {
  59. cd docs
  60. function Git-Do {
  61. git config --global core.autocrlf true
  62. git config --global credential.helper store
  63. Add-Content "$HOME\.git-credentials" "https://$($env:gh_token):[email protected]`n"
  64. git config --global user.email $env:APPVEYOR_REPO_COMMIT_AUTHOR_EMAIL
  65. git config --global user.name $env:APPVEYOR_REPO_COMMIT_AUTHOR
  66. git clone -q "https://github.com/beat-saber-modding-group/BeatSaber-IPA-Reloaded.git" -b gh-pages origin_site
  67. if (-Not (Test-Path origin_site/tags))
  68. { New-Item -ItemType directory -Path origin_site/tags }
  69. }
  70. function Do-DocFX
  71. {
  72. Add-Content link_branch.json "{`"_gitContribute`":{`"sourceBranch`":`"$env:APPVEYOR_REPO_COMMIT`",`"apiSpecFolder`":`"docs/override`"}}"
  73. #& docfx metadata
  74. #& docfx build --globalMetadataFiles link_branch.json @Args
  75. #if ($lastexitcode -ne 0){
  76. # throw [System.Exception] "docfx build failed with exit code $lastexitcode."
  77. #}
  78. & .\build.ps1
  79. }
  80. if ($env:APPVEYOR_REPO_TAG -eq "true")
  81. { # Copy current site into tags
  82. & Do-DocFX
  83. & Git-Do
  84. cd origin_site # make things a bit easier
  85. $tagPath = "tags/$env:APPVEYOR_REPO_TAG_NAME"
  86. Move-Item ../_site $tagPath
  87. git add -A 2>&1
  88. git commit -q -a -m "Saved tag $env:APPVEYOR_REPO_TAG_NAME" 2>&1
  89. }
  90. elseif (-Not $env:APPVEYOR_PULL_REQUEST_TITLE)
  91. { # Generate docs
  92. & Do-DocFX
  93. & Git-Do
  94. Move-Item origin_site/.git _site
  95. Move-Item origin_site/tags _site
  96. CD _site
  97. git add -A 2>&1
  98. git commit -q -a -m "$env:APPVEYOR_REPO_COMMIT_MESSAGE -- Generated Docs" 2>&1
  99. }
  100. git push -q origin gh-pages 2>&1
  101. }
  102. branches:
  103. except:
  104. - gh-pages
  105. cache:
  106. - '%LocalAppData%\NuGet\v3-cache' # NuGet v3
  107. build:
  108. verbosity: normal
  109. project: BSIPA.sln
  110. deploy:
  111. - provider: GitHub
  112. release: BSIPA $(bsipa_version)-draft
  113. tag: $(bsipa_version)-d
  114. description: |
  115. **Build:** [$(bsipa_version)-$(APPVEYOR_BUILD_NUMBER)](https://ci.appveyor.com/project/nike4613/beatsaber-ipa-reloaded-9smsb/builds/$(APPVEYOR_BUILD_ID))
  116. **Latest Commit:** $(APPVEYOR_REPO_COMMIT)
  117. - `$(APPVEYOR_REPO_COMMIT_MESSAGE)`
  118. - `$(APPVEYOR_REPO_COMMIT_MESSAGE_EXTENDED)`
  119. auth_token:
  120. secure: KhF3q/zWEFwrW0QeZLqE3NAkWR4u9iVhsmcyzXvwwJ28fUy+MzW4CWBx3RxNM60t
  121. artifact: '/.*[^_]\.zip/'
  122. draft: true
  123. force_update: true
  124. on:
  125. branch: master
  126. APPVEYOR_REPO_TAG: false
  127. do_deploy: true