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

Updated files to ignore for github actions CI #1441

Merged
merged 1 commit into from
Nov 6, 2020
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
2 changes: 2 additions & 0 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,13 @@ on:
- master
paths:
- docker/**
- '.github/workflows/docker-publish.yml'
release:
types: [published]
pull_request:
paths:
- docker/**
- '.github/workflows/docker-publish.yml'

jobs:
build-publish:
Expand Down
24 changes: 10 additions & 14 deletions .github/workflows/hvd-tests.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,17 @@
name: Run Horovod tests
on:
push:
paths-ignore:
- 'assets/**'
- '.circleci/**'
- 'docker/**'
- 'docs/**'
- 'conda.recipe'
- '**.md'
paths:
- 'ignite/**'
- 'tests/ignite/**'
- 'tests/run_cpu_tests.sh'
- '.github/workflows/hvd-tests.yml'
pull_request:
paths-ignore:
- 'assets/**'
- '.circleci/**'
- 'docker/**'
- 'docs/**'
- 'conda.recipe'
- '**.md'
paths:
- 'ignite/**'
- 'tests/ignite/**'
- 'tests/run_cpu_tests.sh'
- '.github/workflows/hvd-tests.yml'

jobs:
horovod-tests:
Expand Down
25 changes: 10 additions & 15 deletions .github/workflows/tpu-tests.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,17 @@
name: Run TPU tests
on:
push:
paths-ignore:
- 'assets/**'
- '.circleci/**'
- 'docker/**'
- 'docs/**'
- 'conda.recipe'
- '**.md'
paths:
- 'ignite/**'
- 'tests/ignite/**'
- 'tests/run_tpu_tests.sh'
- '.github/workflows/tpu-tests.yml'
pull_request:
paths-ignore:
- 'assets/**'
- '.circleci/**'
- 'docker/**'
- 'docs/**'
- 'conda.recipe'
- '**.md'

paths:
- 'ignite/**'
- 'tests/ignite/**'
- 'tests/run_tpu_tests.sh'
- '.github/workflows/tpu-tests.yml'

jobs:
tpu-tests:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,21 +1,19 @@
name: Run unit tests
on:
push:
paths-ignore:
- 'assets/**'
- '.circleci/**'
- 'docker/**'
- 'docs/**'
- 'conda.recipe'
- '**.md'
paths:
- 'ignite/**'
- 'tests/ignite/**'
- 'tests/run_cpu_tests.sh'
- 'examples/**.py'
- '.github/workflows/unit-tests.yml'
pull_request:
paths-ignore:
- 'assets/**'
- '.circleci/**'
- 'docker/**'
- 'docs/**'
- 'conda.recipe'
- '**.md'
paths:
- 'ignite/**'
- 'tests/ignite/**'
- 'tests/run_cpu_tests.sh'
- 'examples/**.py'
- '.github/workflows/unit-tests.yml'

jobs:
build:
Expand Down