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の除外条件を更新する #1791

Merged
2 commits merged into from Feb 11, 2022
Merged
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
54 changes: 6 additions & 48 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,32 +6,11 @@
trigger:
paths:
exclude:
- .github/*
- '**/*.md'
- '.github/*'
Copy link
Contributor

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.

ここは構文エラーになったので変更しました。

- .gitignore
- .travis.yml
Copy link
Contributor

Choose a reason for hiding this comment

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

参考。サクラエディタは travis-CI でのビルドを想定してないです。
パクってきたテンプレに書いてあったから誤って混入してた認識です。
導入時に突っ込んで黙認した記憶があります。
削ってしまって問題ないはずです。

- .editorconfig
- appveyor.yml
Copy link
Contributor

Choose a reason for hiding this comment

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

参考。これは残しておくのが正しい(これで問題ない)の認識です。

- CHANGELOG.md
- CONTRIBUTING.md
- CPPLINT.md
- README.md
- SonarQube.md
- addDoxygenFileComment.md
- build.md
- create-big-file.md
- debug-tasktray-menu.md
- get-PR.md
- ci/azure-pipelines/azure-pipelines.md
- ci/build-batchfiles.md
- ci/build-envvars.md
- installer/externals/bregonig/README.md
- installer/externals/universal-ctags/README.md
- installer/readme.md
- remove-redundant-blank-lines.md
- tools/find-tools.md
- tools/macro/macro.md
- tools/zip/readme.md
- tests/unittest.md
- vcx-props/project-PlatformToolset.md
Copy link
Contributor

Choose a reason for hiding this comment

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

参考。この変更により、すべてのmarkdownをここに列挙しなくても良くなります。

  • 追加や削除、変更があったときにCI設定を修正しなくてよくなるということです。
  • markdownをソースにしてプログラムに情報を埋め込む仕様は、採用しにくくなるということです。
    需要があるかどうかは別にして。


###############################################################################################################################
# ビルドトリガー (Pull Request)
Expand All @@ -41,32 +20,11 @@ trigger:
pr:
paths:
exclude:
- .github/*
- '**/*.md'
- '.github/*'
- .gitignore
- .travis.yml
- .editorconfig
- appveyor.yml
- CHANGELOG.md
- CONTRIBUTING.md
- CPPLINT.md
- README.md
- SonarQube.md
- addDoxygenFileComment.md
- build.md
- create-big-file.md
- debug-tasktray-menu.md
- get-PR.md
- ci/azure-pipelines/azure-pipelines.md
- ci/build-batchfiles.md
- ci/build-envvars.md
- installer/externals/bregonig/README.md
- installer/externals/universal-ctags/README.md
- installer/readme.md
- remove-redundant-blank-lines.md
- tools/find-tools.md
- tools/macro/macro.md
- tools/zip/readme.md
- tests/unittest.md
- vcx-props/project-PlatformToolset.md

###############################################################################################################################
# jobs/job 定義
Expand Down