lightning/.github/checkgroup.yml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

286 lines
10 KiB
YAML
Raw Normal View History

custom_service_name: "Lightning CI required checker"
subprojects:
2022-09-08 14:12:58 +00:00
# SECTION: pytorch_lightning
- id: "pytorch_lightning: Tests workflow"
paths:
2023-06-15 15:25:59 +00:00
- ".actions/*"
- ".github/workflows/ci-tests-pytorch.yml"
- "requirements/fabric/**"
- "src/lightning/fabric/**"
- "src/lightning_fabric/*"
- "requirements/pytorch/**"
- "src/lightning/pytorch/**"
- "src/pytorch_lightning/*"
- "tests/tests_pytorch/**"
2023-01-25 12:14:42 +00:00
- "tests/legacy/**"
- "pyproject.toml" # includes pytest config
2022-11-26 01:16:48 +00:00
- "!requirements/*/docs.txt"
2022-11-16 10:07:02 +00:00
- "!*.md"
- "!**/*.md"
checks:
2024-11-13 14:00:26 +00:00
- "pl-cpu (macOS-14, lightning, 3.9, 2.1, oldest)"
- "pl-cpu (macOS-14, lightning, 3.10, 2.1)"
- "pl-cpu (macOS-14, lightning, 3.11, 2.2.2)"
- "pl-cpu (macOS-14, lightning, 3.11, 2.3)"
- "pl-cpu (macOS-14, lightning, 3.12, 2.4.1)"
- "pl-cpu (macOS-14, lightning, 3.12, 2.5.1)"
2024-07-12 14:33:35 +00:00
- "pl-cpu (ubuntu-20.04, lightning, 3.9, 2.1, oldest)"
2023-10-06 11:17:03 +00:00
- "pl-cpu (ubuntu-20.04, lightning, 3.10, 2.1)"
- "pl-cpu (ubuntu-20.04, lightning, 3.11, 2.2.2)"
- "pl-cpu (ubuntu-20.04, lightning, 3.11, 2.3)"
- "pl-cpu (ubuntu-22.04, lightning, 3.12, 2.4.1)"
- "pl-cpu (ubuntu-22.04, lightning, 3.12, 2.5.1)"
2024-07-12 14:33:35 +00:00
- "pl-cpu (windows-2022, lightning, 3.9, 2.1, oldest)"
2023-10-06 11:17:03 +00:00
- "pl-cpu (windows-2022, lightning, 3.10, 2.1)"
- "pl-cpu (windows-2022, lightning, 3.11, 2.2.2)"
- "pl-cpu (windows-2022, lightning, 3.11, 2.3)"
- "pl-cpu (windows-2022, lightning, 3.12, 2.4.1)"
- "pl-cpu (windows-2022, lightning, 3.12, 2.5.1)"
2024-07-12 14:33:35 +00:00
- "pl-cpu (macOS-14, pytorch, 3.9, 2.1)"
- "pl-cpu (ubuntu-20.04, pytorch, 3.9, 2.1)"
- "pl-cpu (windows-2022, pytorch, 3.9, 2.1)"
- "pl-cpu (macOS-14, pytorch, 3.12, 2.5.1)"
- "pl-cpu (ubuntu-22.04, pytorch, 3.12, 2.5.1)"
- "pl-cpu (windows-2022, pytorch, 3.12, 2.5.1)"
2022-09-08 14:12:58 +00:00
- id: "pytorch_lightning: Azure GPU"
paths:
2023-06-15 15:25:59 +00:00
- ".actions/*"
- ".azure/gpu-tests-pytorch.yml"
# only the azure GPU workflow runs the examples
# all examples don't need to be added because they aren't used in CI, but these are
- "examples/run_pl_examples.sh"
- "examples/pytorch/basics/backbone_image_classifier.py"
- "examples/pytorch/basics/autoencoder.py"
- "requirements/pytorch/**"
2023-03-06 17:19:50 +00:00
- "src/lightning/__init__.py"
- "src/lightning/__setup__.py"
- "src/lightning/__version__.py"
- "src/lightning/pytorch/**"
- "src/pytorch_lightning/*"
- "tests/tests_pytorch/**"
- "tests/run_standalone_*.sh"
- "pyproject.toml" # includes pytest config
- "requirements/fabric/**"
- "src/lightning/fabric/**"
- "src/lightning_fabric/*"
2022-11-26 01:16:48 +00:00
- "!requirements/docs.txt"
- "!requirements/*/docs.txt"
2022-11-16 10:07:02 +00:00
- "!*.md"
- "!**/*.md"
checks:
- "pytorch-lightning (GPUs) (testing Lightning | latest)"
- "pytorch-lightning (GPUs) (testing PyTorch | latest)"
- id: "pytorch_lightning: Benchmarks"
paths:
- ".azure/gpu-benchmarks.yml"
2023-05-30 00:23:36 +00:00
- "requirements/fabric/**"
- "requirements/pytorch/**"
2023-05-30 00:23:36 +00:00
- "src/lightning/fabric/**"
- "src/lightning/pytorch/**"
- "tests/parity_fabric/**"
- "tests/parity_pytorch/**"
- "!requirements/fabric/docs.txt"
2022-11-16 10:07:02 +00:00
- "!requirements/pytorch/docs.txt"
- "!*.md"
- "!**/*.md"
checks:
- "lightning.Benchmarks"
# Temporarily disabled
# - id: "pytorch-lightning: TPU workflow"
# paths:
# # tpu CI availability is very limited, so we only require tpu tests
# # to pass when their configurations are modified
# - ".github/workflows/tpu-tests.yml"
# - "tests/tests_pytorch/run_tpu_tests.sh"
# checks:
# - "test-on-tpus (pytorch, pjrt, v4-8)"
2023-03-30 13:24:20 +00:00
- id: "fabric: Docs"
paths:
- "src/lightning/fabric/**"
- "src/lightning_fabric/*"
- "docs/source-fabric/**"
2023-03-05 10:41:00 +00:00
- ".github/workflows/docs-build.yml"
- "requirements/docs.txt"
- "requirements/fabric/**"
- "setup.py"
- "pyproject.toml" # includes metadata used in the package creation
- "!*.md"
- "!**/*.md"
checks:
- "docs-make (fabric, doctest)"
- "docs-make (fabric, html)"
- id: "pytorch_lightning: Docs"
paths:
- "src/lightning/pytorch/**"
- "src/pytorch_lightning/*"
- "docs/source-pytorch/**"
- "_notebooks"
2023-06-15 15:25:59 +00:00
- ".actions/*"
2023-03-05 10:41:00 +00:00
- ".github/workflows/docs-build.yml"
- "requirements/docs.txt"
- "requirements/pytorch/**"
- "setup.py"
- "pyproject.toml" # includes metadata used in the package creation
2022-11-16 10:07:02 +00:00
- "!*.md"
- "!**/*.md"
checks:
- "docs-make (pytorch, doctest)"
- "docs-make (pytorch, html)"
- id: "pytorch_lightning: Docker"
paths:
2023-06-15 15:25:59 +00:00
- ".actions/*"
2023-08-30 17:11:35 +00:00
- ".github/workflows/docker-build.yml"
2022-11-26 01:16:48 +00:00
- "dockers/**"
- "requirements/pytorch/**"
- "requirements/fabric/**"
- "setup.py"
2022-11-26 01:16:48 +00:00
- "!requirements/*/docs.txt"
2022-11-16 10:07:02 +00:00
- "!*.md"
- "!**/*.md"
checks:
- "build-cuda (3.10, 2.1.2, 12.1.0)"
- "build-cuda (3.11, 2.2.2, 12.1.0)"
- "build-cuda (3.11, 2.3.1, 12.1.0)"
- "build-cuda (3.11, 2.4.1, 12.1.0)"
- "build-cuda (3.12, 2.5.1, 12.1.0)"
#- "build-NGC"
- "build-pl (3.10, 2.1, 12.1.0)"
- "build-pl (3.11, 2.2, 12.1.0)"
- "build-pl (3.11, 2.3, 12.1.0)"
- "build-pl (3.11, 2.4, 12.1.0)"
- "build-pl (3.12, 2.5, 12.1.0)"
# SECTION: lightning_fabric
2022-09-08 14:12:58 +00:00
- id: "lightning_fabric: CPU workflow"
paths:
2023-06-15 15:25:59 +00:00
- ".actions/*"
- "requirements/fabric/**"
- "src/lightning/fabric/**"
- "src/lightning_fabric/*"
- "tests/tests_fabric/**"
- "pyproject.toml" # includes pytest config
- ".github/workflows/ci-tests-fabric.yml"
2022-11-26 01:16:48 +00:00
- "!requirements/*/docs.txt"
2022-11-16 10:07:02 +00:00
- "!*.md"
- "!**/*.md"
checks:
2024-11-13 14:00:26 +00:00
- "fabric-cpu (macOS-14, lightning, 3.9, 2.1, oldest)"
- "fabric-cpu (macOS-14, lightning, 3.10, 2.1)"
- "fabric-cpu (macOS-14, lightning, 3.11, 2.2.2)"
- "fabric-cpu (macOS-14, lightning, 3.11, 2.3)"
- "fabric-cpu (macOS-14, lightning, 3.12, 2.4.1)"
- "fabric-cpu (macOS-14, lightning, 3.12, 2.5.1)"
2024-07-12 14:33:35 +00:00
- "fabric-cpu (ubuntu-20.04, lightning, 3.9, 2.1, oldest)"
- "fabric-cpu (ubuntu-20.04, lightning, 3.10, 2.1)"
- "fabric-cpu (ubuntu-20.04, lightning, 3.11, 2.2.2)"
2024-04-29 11:16:13 +00:00
- "fabric-cpu (ubuntu-20.04, lightning, 3.11, 2.3)"
- "fabric-cpu (ubuntu-22.04, lightning, 3.12, 2.4.1)"
- "fabric-cpu (ubuntu-22.04, lightning, 3.12, 2.5.1)"
2024-07-12 14:33:35 +00:00
- "fabric-cpu (windows-2022, lightning, 3.9, 2.1, oldest)"
- "fabric-cpu (windows-2022, lightning, 3.10, 2.1)"
- "fabric-cpu (windows-2022, lightning, 3.11, 2.2.2)"
2024-04-29 11:16:13 +00:00
- "fabric-cpu (windows-2022, lightning, 3.11, 2.3)"
- "fabric-cpu (windows-2022, lightning, 3.12, 2.4.1)"
- "fabric-cpu (windows-2022, lightning, 3.12, 2.5.1)"
2024-07-12 14:33:35 +00:00
- "fabric-cpu (macOS-14, fabric, 3.9, 2.1)"
- "fabric-cpu (ubuntu-20.04, fabric, 3.9, 2.1)"
- "fabric-cpu (windows-2022, fabric, 3.9, 2.1)"
- "fabric-cpu (macOS-14, fabric, 3.12, 2.5.1)"
- "fabric-cpu (ubuntu-22.04, fabric, 3.12, 2.5.1)"
- "fabric-cpu (windows-2022, fabric, 3.12, 2.5.1)"
- id: "lightning_fabric: Azure GPU"
2022-09-08 14:12:58 +00:00
paths:
2023-06-15 15:25:59 +00:00
- ".actions/*"
- ".azure/gpu-tests-fabric.yml"
- "examples/fabric/**"
- "examples/run_fabric_examples.sh"
- "requirements/fabric/**"
2023-03-06 17:19:50 +00:00
- "src/lightning/__init__.py"
- "src/lightning/__setup__.py"
- "src/lightning/__version__.py"
- "src/lightning/fabric/**"
- "src/lightning_fabric/*"
- "tests/tests_fabric/**"
- "tests/run_standalone_*.sh"
- "pyproject.toml" # includes pytest config
2022-11-26 01:16:48 +00:00
- "!requirements/*/docs.txt"
2022-11-16 10:07:02 +00:00
- "!*.md"
- "!**/*.md"
2022-09-08 14:12:58 +00:00
checks:
- "lightning-fabric (GPUs) (testing Fabric | latest)"
- "lightning-fabric (GPUs) (testing Lightning | latest)"
2022-09-08 14:12:58 +00:00
- id: "lightning_fabric: TPU workflow"
paths:
# tpu CI availability is very limited, so we only require tpu tests
# to pass when their configurations are modified
- ".github/workflows/tpu-tests.yml"
- "tests/tests_fabric/run_tpu_tests.sh"
checks:
- "test-on-tpus (pytorch, pjrt, v4-8)"
2022-09-08 14:12:58 +00:00
# SECTION: common
- id: "mypy"
paths:
2023-06-15 15:25:59 +00:00
- ".actions/*"
2022-09-08 14:12:58 +00:00
- ".github/workflows/code-checks.yml"
- "requirements/**"
- "src/**"
- "pyproject.toml" # includes mypy config
2022-11-26 01:16:48 +00:00
- "!requirements/docs.txt"
- "!requirements/*/docs.txt"
2022-11-16 10:07:02 +00:00
- "!*.md"
- "!**/*.md"
2022-09-08 14:12:58 +00:00
checks:
- "mypy"
- id: "install"
paths:
2023-06-15 15:25:59 +00:00
- ".actions/*"
- ".github/actions/pkg-check/*"
- ".github/actions/pkg-install/*"
- ".github/workflows/_build-packages.yml"
- ".github/workflows/ci-pkg-install.yml"
- "setup.py"
- "src/**"
- "requirements/**"
2022-11-26 01:16:48 +00:00
- "!requirements/docs.txt"
- "!requirements/*/docs.txt"
2022-11-16 10:07:02 +00:00
- "!*.md"
- "!**/*.md"
checks:
2024-07-12 14:33:35 +00:00
- "install-pkg (ubuntu-22.04, fabric, 3.9)"
2023-08-28 15:15:12 +00:00
- "install-pkg (ubuntu-22.04, fabric, 3.11)"
2024-07-12 14:33:35 +00:00
- "install-pkg (ubuntu-22.04, pytorch, 3.9)"
2023-08-28 15:15:12 +00:00
- "install-pkg (ubuntu-22.04, pytorch, 3.11)"
2024-07-12 14:33:35 +00:00
- "install-pkg (ubuntu-22.04, lightning, 3.9)"
2023-08-28 15:15:12 +00:00
- "install-pkg (ubuntu-22.04, lightning, 3.11)"
2024-07-12 14:33:35 +00:00
- "install-pkg (ubuntu-22.04, notset, 3.9)"
2023-08-28 15:15:12 +00:00
- "install-pkg (ubuntu-22.04, notset, 3.11)"
2024-11-13 14:00:26 +00:00
- "install-pkg (macOS-14, fabric, 3.9)"
- "install-pkg (macOS-14, fabric, 3.11)"
- "install-pkg (macOS-14, pytorch, 3.9)"
- "install-pkg (macOS-14, pytorch, 3.11)"
- "install-pkg (macOS-14, lightning, 3.9)"
- "install-pkg (macOS-14, lightning, 3.11)"
- "install-pkg (macOS-14, notset, 3.9)"
- "install-pkg (macOS-14, notset, 3.11)"
2024-07-12 14:33:35 +00:00
- "install-pkg (windows-2022, fabric, 3.9)"
2023-08-28 15:15:12 +00:00
- "install-pkg (windows-2022, fabric, 3.11)"
2024-07-12 14:33:35 +00:00
- "install-pkg (windows-2022, pytorch, 3.9)"
2023-08-28 15:15:12 +00:00
- "install-pkg (windows-2022, pytorch, 3.11)"
2024-07-12 14:33:35 +00:00
- "install-pkg (windows-2022, lightning, 3.9)"
2023-08-28 15:15:12 +00:00
- "install-pkg (windows-2022, lightning, 3.11)"
2024-07-12 14:33:35 +00:00
- "install-pkg (windows-2022, notset, 3.9)"
2023-08-28 15:15:12 +00:00
- "install-pkg (windows-2022, notset, 3.11)"