Skip to content

Commit ecb4629

Browse files
Bordaakihironittacarmocca
authored andcommitted
Update GHA job names (#14400)
* update CJ job names * groups * filter * Apply suggestions from code review Co-authored-by: Akihiro Nitta <[email protected]> Co-authored-by: Carlos Mocholí <[email protected]>
1 parent eb2e1d7 commit ecb4629

File tree

7 files changed

+37
-29
lines changed

7 files changed

+37
-29
lines changed

.github/checkgroup.yml

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -28,29 +28,29 @@ subprojects:
2828
- ".github/workflows/ci-pytorch*.yml"
2929
- ".github/workflows/docs-*.yml"
3030
checks:
31-
- "conda (3.8, 1.10)"
32-
- "conda (3.8, 1.9)"
33-
- "conda (3.9, 1.11)"
34-
- "conda (3.9, 1.12)"
35-
- "cpu (macOS-11, 3.10, latest, stable)"
36-
- "cpu (macOS-11, 3.7, latest, stable)"
37-
- "cpu (macOS-11, 3.7, oldest, stable)"
38-
- "cpu (ubuntu-20.04, 3.10, latest, stable)"
39-
- "cpu (ubuntu-20.04, 3.7, latest, stable)"
40-
- "cpu (ubuntu-20.04, 3.7, oldest, stable)"
41-
- "cpu (windows-2022, 3.10, latest, stable)"
42-
- "cpu (windows-2022, 3.7, latest, stable)"
43-
- "cpu (windows-2022, 3.7, oldest, stable)"
44-
- "doctest (pytorch)"
45-
- "make-docs (pytorch)"
31+
- "pl-conda (3.8, 1.10)"
32+
- "pl-conda (3.8, 1.9)"
33+
- "pl-conda (3.9, 1.11)"
34+
- "pl-conda (3.9, 1.12)"
35+
- "pl-cpu (macOS-11, 3.10, latest, stable)"
36+
- "pl-cpu (macOS-11, 3.7, latest, stable)"
37+
- "pl-cpu (macOS-11, 3.7, oldest, stable)"
38+
- "pl-cpu (ubuntu-20.04, 3.10, latest, stable)"
39+
- "pl-cpu (ubuntu-20.04, 3.7, latest, stable)"
40+
- "pl-cpu (ubuntu-20.04, 3.7, oldest, stable)"
41+
- "pl-cpu (windows-2022, 3.10, latest, stable)"
42+
- "pl-cpu (windows-2022, 3.7, latest, stable)"
43+
- "pl-cpu (windows-2022, 3.7, oldest, stable)"
44+
- "make-doctest (pytorch)"
45+
- "make-html (pytorch)"
4646
- "mypy"
4747
- "PR Gatekeeper (pytorch)"
4848
- "pytorch-lightning (GPUs)"
4949
- "pytorch-lightning (HPUs)"
5050
- "pytorch-lightning (IPUs)"
51-
- "slow (macOS-11, 3.7, 1.11)"
52-
- "slow (ubuntu-20.04, 3.7, 1.11)"
53-
- "slow (windows-2022, 3.7, 1.11)"
51+
- "pl-slow (macOS-11, 3.7, 1.11)"
52+
- "pl-slow (ubuntu-20.04, 3.7, 1.11)"
53+
- "pl-slow (windows-2022, 3.7, 1.11)"
5454
- "test-on-tpus"
5555

5656
- id: "pytorch_lightning: Azure GPU"
@@ -79,8 +79,8 @@ subprojects:
7979
- "requirements/docs.txt"
8080
- "requirements/pytorch/**"
8181
checks:
82-
- "doctest (pytorch)"
83-
- "make-docs (pytorch)"
82+
- "make-doctest (pytorch)"
83+
- "make-html (pytorch)"
8484

8585
- id: "pytorch_lightning: Docker"
8686
paths:
@@ -159,8 +159,8 @@ subprojects:
159159
- "requirements/docs.txt"
160160
- "requirements/app/**"
161161
checks:
162-
- "doctest (app)"
163-
- "make-docs (app)"
162+
- "make-doctest (app)"
163+
- "make-html (app)"
164164

165165
- id: "install"
166166
paths:

.github/workflows/ci-app-examples.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,20 @@ on: # Trigger the workflow on push or pull request, but only for the master bran
66
branches: [master, "release/*"]
77
pull_request:
88
branches: [master, "release/*"]
9+
paths:
10+
- ".github/workflows/ci-app-examples.yml"
11+
- "src/lightning_app/**"
12+
- "tests/tests_app_examples/**"
13+
- "examples/app_*"
14+
- "requirements/app/**"
15+
- "setup.py"
916

1017
concurrency:
1118
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.head_ref }}
1219
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
1320

1421
jobs:
15-
pytest:
22+
app-examples:
1623
runs-on: ${{ matrix.os }}
1724
strategy:
1825
fail-fast: false

.github/workflows/ci-app-tests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on: # Trigger the workflow on push or pull request, but only for the master bran
66
branches: [master, "release/*"]
77
pull_request:
88
paths:
9+
- ".github/workflows/ci-app-tests.yml"
910
- "src/lightning_app/**"
1011
- "tests/tests_app/**"
1112
- "requirements/app/**"
@@ -16,7 +17,7 @@ concurrency:
1617
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
1718

1819
jobs:
19-
pytest:
20+
app-pytest:
2021
runs-on: ${{ matrix.os }}
2122
strategy:
2223
fail-fast: false

.github/workflows/ci-pytorch-test-conda.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ defaults:
1616
shell: bash -l {0}
1717

1818
jobs:
19-
conda:
19+
pl-conda:
2020
runs-on: ubuntu-20.04
2121
container: pytorchlightning/pytorch_lightning:base-conda-py${{ matrix.python-version }}-torch${{ matrix.pytorch-version }}
2222
strategy:

.github/workflows/ci-pytorch-test-full.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ concurrency:
1414

1515
jobs:
1616

17-
cpu:
17+
pl-cpu:
1818
runs-on: ${{ matrix.os }}
1919
if: github.event.pull_request.draft == false
2020
strategy:

.github/workflows/ci-pytorch-test-slow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ concurrency:
1313
cancel-in-progress: ${{ ! (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/heads/release/')) }}
1414

1515
jobs:
16-
slow:
16+
pl-slow:
1717
runs-on: ${{ matrix.os }}
1818
if: github.event.pull_request.draft == false
1919
strategy:

.github/workflows/docs-checks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ concurrency:
1212
cancel-in-progress: ${{ ! (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/heads/release/')) }}
1313

1414
jobs:
15-
doctest:
15+
make-doctest:
1616
runs-on: ubuntu-20.04
1717
strategy:
1818
fail-fast: false
@@ -63,7 +63,7 @@ jobs:
6363
make doctest
6464
make coverage
6565
66-
make-docs:
66+
make-html:
6767
runs-on: ubuntu-20.04
6868
strategy:
6969
fail-fast: false

0 commit comments

Comments
 (0)