Skip to content

Commit

Permalink
Fix azure path excludes (#15756)
Browse files Browse the repository at this point in the history
Co-authored-by: Jirka Borovec <6035284+Borda@users.noreply.github.com>
  • Loading branch information
carmocca and Borda committed Nov 22, 2022
1 parent e15e1c8 commit aef94ce
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 18 deletions.
7 changes: 4 additions & 3 deletions .azure/app-cloud-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,10 @@ pr:
- "tests/tests_app_examples/**"
- "setup.py"
- ".actions/**"
- "!requirements/app/docs.txt"
- "!*.md"
- "!**/*.md"
exclude:
- "requirements/app/docs.txt"
- "*.md"
- "**/*.md"

# variables are automatically exported as environment variables so this will override pip's default cache dir
variables:
Expand Down
7 changes: 4 additions & 3 deletions .azure/gpu-benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,10 @@ pr:
- ".azure/gpu-benchmark.yml"
- "tests/tests_pytorch/benchmarks/**"
- "requirements/pytorch/**"
- "!requirements/pytorch/docs.txt"
- "!*.md"
- "!**/*.md"
exclude:
- "requirements/pytorch/docs.txt"
- "*.md"
- "**/*.md"

schedules:
- cron: "0 0 * * *" # At the end of every day
Expand Down
7 changes: 4 additions & 3 deletions .azure/gpu-tests-lite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,10 @@ pr:
- "tests/tests_lite/**"
- "setup.cfg" # includes pytest config
- ".actions/**"
- "!requirements/lite/docs.txt"
- "!*.md"
- "!**/*.md"
exclude:
- "requirements/lite/docs.txt"
- "*.md"
- "**/*.md"

jobs:
- job: testing
Expand Down
7 changes: 4 additions & 3 deletions .azure/gpu-tests-pytorch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,10 @@ pr:
- "requirements/lite/**"
- "src/lightning_lite/**"
- ".actions/**"
- "!requirements/**/docs.txt"
- "!*.md"
- "!**/*.md"
exclude:
- "requirements/**/docs.txt"
- "*.md"
- "**/*.md"

jobs:
- job: testing
Expand Down
7 changes: 4 additions & 3 deletions .azure/hpu-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,10 @@ pr:
- "tests/tests_pytorch/**"
- "setup.cfg" # includes pytest config
- ".actions/**"
- "!requirements/**/docs.txt"
- "!*.md"
- "!**/*.md"
exclude:
- "requirements/**/docs.txt"
- "*.md"
- "**/*.md"

jobs:
- job: testing
Expand Down
7 changes: 4 additions & 3 deletions .azure/ipu-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,10 @@ pr:
- "tests/tests_pytorch/**"
- "setup.cfg" # includes pytest config
- ".actions/**"
- "!requirements/**/docs.txt"
- "!*.md"
- "!**/*.md"
exclude:
- "requirements/**/docs.txt"
- "*.md"
- "**/*.md"

variables:
- name: poplar_sdk
Expand Down

0 comments on commit aef94ce

Please sign in to comment.