Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Azure PipelinesにおけるWindows Server 2016環境の利用を廃止する #1773

Merged
3 commits merged into from Jan 23, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 6 additions & 17 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,17 +87,6 @@ pr:
###############################################################################################################################
jobs:

# サクラエディタのビルドを行う JOB (VS2017)
# * サクラエディタ本体
# * HTML Help
# * Installer
# * 単体テスト
- template: ci/azure-pipelines/template.job.build-unittest.yml
parameters:
name: VS2017
vmImage: 'VS2017-Win2016'
displayName: VS2017

# サクラエディタのビルドを行う JOB (VS2019)
# * サクラエディタ本体
# * HTML Help
Expand All @@ -117,41 +106,41 @@ jobs:
- template: ci/azure-pipelines/template.job.build-on-msys2.yml
parameters:
name: MinGW
vmImage: 'VS2017-Win2016'
vmImage: 'windows-latest'
displayName: MinGW

# SonarQube で解析を行う JOB
- template: ci/azure-pipelines/template.job.SonarQube.yml
parameters:
name: SonarQube
vmImage: 'VS2017-Win2016'
vmImage: 'windows-latest'
displayName: SonarQube
Comment on lines 112 to 117
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

このジョブは必要な環境変数と実行スケジュールを設定すればいずれの環境でも問題なく実行できましたが、 #1494 でGitHub Actionsで実行するようになってからは使われていないかもしれません。


# Cppcheck を行う JOB
- template: ci/azure-pipelines/template.job.cppcheck.yml
parameters:
name: cppcheck
vmImage: 'VS2017-Win2016'
vmImage: 'windows-latest'
displayName: cppcheck

# doxygen を行う JOB
- template: ci/azure-pipelines/template.job.doxygen.yml
parameters:
name: doxygen
vmImage: 'VS2017-Win2016'
vmImage: 'windows-latest'
displayName: doxygen

# 文字コードのチェックを行う JOB
- template: ci/azure-pipelines/template.job.checkEncoding.yml
parameters:
name: checkEncoding
vmImage: 'VS2017-Win2016'
vmImage: 'windows-latest'

#############################################################################################################
# Python スクリプトのコンパイル確認を行う job
#############################################################################################################
- template: ci/azure-pipelines/template.job.python-check.yml
parameters:
name: script_check
vmImage: 'VS2017-Win2016'
vmImage: 'windows-latest'
displayName: script_check
1 change: 0 additions & 1 deletion ci/azure-pipelines/azure-pipelines.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@ https://azure.microsoft.com/ja-jp/services/devops/pipelines/ にアクセスし

| JOB 名 | 説明 | job を定義する template |
----|----|----
|VS2017 | Visual Studio 2017 でサクラエディタのビルドを行う | [template.job.build-unittest.yml](template.job.build-unittest.yml) |
|VS2019 | Visual Studio 2019 でサクラエディタのビルドを行う | [template.job.build-unittest.yml](template.job.build-unittest.yml) |
|MinGW | MinGW でサクラエディタのビルドを行う | [template.job.build-on-msys2.yml](template.job.build-on-msys2.yml) |
|SonarQube | SonarQube での解析を行う | [template.job.SonarQube.yml](template.job.SonarQube.yml) |
Expand Down