OSDN Git Service

GraphQL関連のリクエストにPostJsonRequestクラスを使用する
[opentween/open-tween.git] / appveyor.yml
index e8746d5..1893d88 100644 (file)
@@ -1,27 +1,83 @@
-version: 1.2.9.{build}
+version: 3.9.0.{build}
 
-os: Visual Studio 2015
+os: Visual Studio 2022
 
-assembly_info:
-  patch: true
-  file: OpenTween\Properties\AssemblyInfo.cs
-  assembly_file_version: '{version}'
+environment:
+  matrix:
+    - RELEASE_TAG: 'false'
+    - RELEASE_TAG: 'true'
+
+configuration:
+  - Debug
+  - Release
+
+matrix:
+  exclude:
+    - RELEASE_TAG: 'false'
+      configuration: Release
+    - RELEASE_TAG: 'true'
+      configuration: Debug
+
+branches:
+  only:
+    - develop
+    - /^OpenTween.+/ # release tag
+
+for:
+  - # for dev build
+    matrix:
+      only:
+        - RELEASE_TAG: 'false'
+    skip_tags: true
+    assembly_info:
+      patch: true
+      file: OpenTween\Properties\AssemblyInfo.cs
+      assembly_version: '{version}'
+    artifacts:
+      - name: OpenTween.zip
+        path: OpenTween_dev-$(APPVEYOR_BUILD_NUMBER).zip
+  - # for release build
+    matrix:
+      only:
+        - RELEASE_TAG: 'true'
+    skip_non_tags: true
+    artifacts:
+      - name: OpenTween.zip
+        path: $(APPVEYOR_REPO_TAG_NAME).zip
 
 build:
+  project: OpenTween.sln
   verbosity: minimal
 
+cache:
+  - '%UserProfile%\.nuget\packages -> OpenTween\OpenTween.csproj, OpenTween.Tests\OpenTween.Tests.csproj'
+
+init:
+  - git config --global core.autocrlf true
+
 before_build:
   - nuget restore
+  - ps: Set-Content .\msbuild.rsp "/warnaserror /p:DebugType=None"
 
-install:
-  - set PATH=C:\Program Files (x86)\MSBuild\14.0\Bin;%PATH%
+test:
+  assemblies:
+    only:
+      - OpenTween.Tests.dll
 
 after_test:
-  - del %APPVEYOR_BUILD_FOLDER%\OpenTween\bin\Debug\OpenTween.pdb
-  - 7z a OpenTween_dev-%APPVEYOR_BUILD_NUMBER%.zip %APPVEYOR_BUILD_FOLDER%\OpenTween\bin\Debug\*
-
-artifacts:
-  - name: OpenTween.zip
-    path: OpenTween_dev-$(APPVEYOR_BUILD_NUMBER).zip
+  - ps: |
+      $env:PATH = $env:PATH + ';C:\Program Files\Microsoft Visual Studio\2022\Community\Msbuild\Current\Bin\Roslyn\;C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\'
+      $binDir = '.\OpenTween\bin\' + $env:CONFIGURATION + '\net48\'
+      if ($env:RELEASE_TAG -eq 'true') {
+        $destPath = $env:APPVEYOR_REPO_TAG_NAME + '.zip'
+      } else {
+        $destPath = 'OpenTween_dev-' + $env:APPVEYOR_BUILD_NUMBER + '.zip'
+      }
+      if ($env:APPVEYOR_PULL_REQUEST_HEAD_COMMIT -ne $null) {
+        $headCommit = $env:APPVEYOR_PULL_REQUEST_HEAD_COMMIT
+      } else {
+        $headCommit = 'HEAD'
+      }
+      .\tools\build-zip-archive.ps1 -BinDir $binDir -DestPath $destPath -HeadCommit $headCommit
 
 # vim: et fenc=utf-8 sts=2 sw=2 ts=2