Skip to content

CI: skip tests when only files in doc/web changes (github actions) #41310

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

Merged
merged 24 commits into from
Jun 12, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
7eaca3f
CI: skip tests when only files in doc/web changes (github)
May 4, 2021
ed48829
Fixed yaml file indent
May 4, 2021
175eb94
Merge remote-tracking branch 'upstream/master' into CI-action-on-change
May 5, 2021
644989c
Revert "CI: skip tests when only files in doc/web changes (github)"
May 5, 2021
719a524
CI: Don't run lint if only doc changes (github worklow)
May 5, 2021
2fa1f9a
CI: Don't run lint if only doc changes (azure)
May 5, 2021
b0dfb08
Merge remote-tracking branch 'upstream/master' into CI-action-on-change
May 5, 2021
9c2fc06
Fix (ex|in)clude logic in azure templates
May 5, 2021
e459da3
Fixed small "typo"
May 5, 2021
e193ca1
Fix location of the "path" parameter
May 5, 2021
0c27427
Removed extra "trigger"
May 5, 2021
431a3a4
Merge remote-tracking branch 'upstream/master' into CI-action-on-change
May 5, 2021
8910b6a
Merge remote-tracking branch 'upstream/master' into CI-action-on-change
May 12, 2021
2bc89aa
Fix for comment
May 12, 2021
d5d531a
Fix for comment
May 12, 2021
0637ecb
Fix for comment
May 12, 2021
e283453
Fix for comment
May 12, 2021
3529f7d
Fix for comment
May 12, 2021
25ca63d
Fix for comment
May 12, 2021
ffd9d7e
Only ignore on "pull_request" not on "push"
May 12, 2021
0048e25
Merge remote-tracking branch 'upstream/master' into CI-action-on-change
Jun 3, 2021
4fed568
Addresing comments
Jun 3, 2021
75a44f3
Merge remote-tracking branch 'upstream/master' into CI-action-on-change
Jun 3, 2021
cae7f81
Merge remote-tracking branch 'upstream/master' into CI-action-on-change
Jun 12, 2021
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
2 changes: 2 additions & 0 deletions .github/workflows/database.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ on:
branches:
- master
- 1.2.x
paths-ignore:
- "doc/**"

env:
PYTEST_WORKERS: "auto"
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/posix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ on:
branches:
- master
- 1.2.x
paths-ignore:
- "doc/**"

env:
PYTEST_WORKERS: "auto"
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/python-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ on:
pull_request:
branches:
- master
paths-ignore:
- "doc/**"

jobs:
build:
Expand Down
9 changes: 7 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
# Adapted from https://github.com/numba/numba/blob/master/azure-pipelines.yml
trigger:
- master
- 1.2.x
branches:
include:
- master
- 1.2.x
paths:
exclude:
- 'doc/*'
Copy link
Member

Choose a reason for hiding this comment

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

any reason why the other have doc/** and this one has doc/*?

Copy link
Member Author

Choose a reason for hiding this comment

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

any reason why the other have doc/** and this one has doc/*?

Yes, because this is the "azure" CI, and the other files are related to the "github actions" CI.
I just copied the syntax from their examples in the docs, I haven't really tested the differences.


pr:
- master
Expand Down