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

コンパイルチェックで利用するPythonバージョンを変更する #1766

Merged
2 commits merged into from Jan 17, 2022
Merged
Changes from 1 commit
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
6 changes: 2 additions & 4 deletions ci/azure-pipelines/template.job.python-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,8 @@ jobs:
strategy:
maxParallel: 2
Copy link
Contributor

Choose a reason for hiding this comment

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

ここの記述は、ビルド対象が2つ以上あったから指定していたものです。
ビルド対象が1つになると指定する意味はなくなるんではないかと思いました。
(とくに対処不要と思いますが、ややキモいっすw

Copy link
Author

Choose a reason for hiding this comment

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

matrixで指定する今までのやり方をそのまま活用したので、将来対象が増える可能性が残ったというのもあります。
変えるとしたら「1」に変えるのが良いかな(0または無指定の時は「無制限」になります)。

Copy link
Contributor

Choose a reason for hiding this comment

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

削除で良いんじゃないかな?と思いました。

元の設定も、対象2件に対して2つまで許可ってのは「無制限」と変わらん気がします。
「対象4件に対して2つまで」って制約ならば定義する意味があると思います。

まぁ、ここを修正する必然はないと思いますけど、なんかキモいですよね・・・。

Copy link
Author

Choose a reason for hiding this comment

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

確かにそうですね。
頻繁に変更するファイルでもないですし、今のうちに消しておくことにします。

Copy link
Author

Choose a reason for hiding this comment

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

消しました。

matrix:
python_2.7:
versionSpec: '2.7'
python_3.7:
versionSpec: '3.7'
python3:
versionSpec: '3.x'
Copy link
Contributor

Choose a reason for hiding this comment

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

2系の利用は従来から「非推奨」でしたが、
3.7も「そんな感じ」になったんですね。
3系のワイルドカード指定に変えるのは問題ないと思います。


steps:
# https://docs.microsoft.com/en-us/azure/devops/pipelines/tasks/tool/use-python-version?view=azure-devops
Expand Down