lightning/.github/workflows
Justus Schock 775e9ebc0f
Assistant for Unified Package (#15207)
* Update assistant and workflow files
* Update .actions/assistant.py

Co-authored-by: otaj <6065855+otaj@users.noreply.github.com>
Co-authored-by: Jirka Borovec <Borda@users.noreply.github.com>
Co-authored-by: otaj <ota@lightning.ai>
2022-10-20 14:17:27 +00:00
..
README.md CI: rename Azure workflow file (#15097) 2022-10-12 15:18:12 +02:00
ci-app-cloud-e2e-test.yml Bump actions/checkout from 2 to 3 (#14540) 2022-09-05 19:13:08 +02:00
ci-app-examples.yml CI: enable CI run for PT 1.13 (#15128) 2022-10-20 08:33:56 +00:00
ci-app-tests.yml CI: enable CI run for PT 1.13 (#15128) 2022-10-20 08:33:56 +00:00
ci-circleci.yml Fix TPU test CI (#14926) 2022-10-03 09:13:33 -04:00
ci-lite-test-full.yml Assistant for Unified Package (#15207) 2022-10-20 14:17:27 +00:00
ci-pkg-install.yml Assistant for Unified Package (#15207) 2022-10-20 14:17:27 +00:00
ci-pytorch-dockers.yml CI: Combine conda and full testing into a single workflow (#14387) 2022-09-29 22:39:04 -04:00
ci-pytorch-test-full.yml CI: enable CI run for PT 1.13 (#15128) 2022-10-20 08:33:56 +00:00
ci-pytorch-test-slow.yml CI: enable CI run for PT 1.13 (#15128) 2022-10-20 08:33:56 +00:00
ci-schema.yml CI: Reuse check schema (#14469) 2022-08-31 17:37:49 +02:00
code-checks.yml Bump Python version for mypy check (#15126) 2022-10-13 16:46:40 +02:00
docs-checks.yml CI: Reuse clear cache (#14593) 2022-10-05 11:52:42 +02:00
docs-deploy.yml switch LAI deployment branch (#15194) 2022-10-19 16:07:05 -04:00
events-nightly.yml Assistant for Unified Package (#15207) 2022-10-20 14:17:27 +00:00
events-recurrent.yml Fix fork skip condition in GitHub workflows (#14955) 2022-09-30 08:30:47 -04:00
labeler.yml CI: Update labeler bot (#13624) 2022-07-12 09:50:46 -04:00
legacy-checkpoints.yml Bump actions/checkout from 2 to 3 (#14540) 2022-09-05 19:13:08 +02:00
probot-auto-cc.yml Explicitly set which Probot job to run (#14756) 2022-09-16 18:12:46 +00:00
probot-check-group.yml Explicitly set which Probot job to run (#14756) 2022-09-16 18:12:46 +00:00
release-docker.yml Bump docker/build-push-action from 1.1.0 to 3 (#14651) 2022-09-12 13:37:49 +00:00
release-pypi.yml Assistant for Unified Package (#15207) 2022-10-20 14:17:27 +00:00
schedule-clear-cache.yml CI: use native oldest for package (#15094) 2022-10-19 00:55:00 +02:00

README.md

Continuous Integration and Delivery

Unit and Integration Testing

workflow name workflow file action accelerator*
Test PyTorch full .github/workflows/ci-pytorch-test-full.yml Run all tests except for accelerator-specific, standalone and slow tests. CPU
Test PyTorch slow .github/workflows/ci-pytorch-test-slow.yml Run only slow tests. Slow tests usually need to spawn threads and cannot be speed up or simplified. CPU
pytorch-lightning (IPUs) .azure-pipelines/ipu-tests.yml Run only IPU-specific tests. IPU
pytorch-lightning (HPUs) .azure-pipelines/hpu-tests.yml Run only HPU-specific tests. HPU
pytorch-lightning (GPUs) .azure-pipelines/gpu-tests-pytorch.yml Run all CPU and GPU-specific tests, standalone, and examples. Each standalone test needs to be run in separate processes to avoid unwanted interactions between test cases. GPU
PyTorchLightning.Benchmark .azure-pipelines/gpu-benchmark.yml Run speed/memory benchmarks for parity with pure PyTorch. GPU
test-on-tpus .circleci/config.yml Run only TPU-specific tests. TPU

Documentation

workflow file action
.github/workflows/docs-checks.yml Run doctest.

Code Quality

workflow file action
.codecov.yml Measure test coverage with codecov.io
.github/workflows/code-checks.yml Check Python typing with MyPy.
.github/workflows/ci-schema.yml Validate the syntax of workflow files.

Others

workflow file action
.github/workflows/cicd-pytorch-dockers.yml Build docker images used for testing in CI. If run on nightly schedule, push to the Docker Hub.
.github/workflows/ci-pkg-install.yml Test if pytorch-lightning is successfully installed using pip.
.github/workflows/events-recurrent.yml Terminate TPU jobs that live more than one hour to avoid possible resource exhaustion due to hangs.

Deployment

workflow file action
.github/workflows/release-pypi.yml Publish a release to PyPI.
.github/workflows/release-docker.yml Build Docker images from dockers/*/Dockerfile and publish them on hub.docker.com.
.github/workflows/legacy-checkpoints.yml App on request generate legacy checkpoints and upload them to AWS S3.
.github/workflows/events-nightly.yml Publish the package to TestPyPI. Publish Docker images on hub.docker.com.

Bots

workflow file action
.github/mergify.yml Label PRs as conflicts or ready, and request reviews if needed.
.github/stale.yml Close inactive issues/PRs sometimes after adding the "won't fix" label to them.
.github/workflows/probot-auto-cc.yml, .github/lightning-probot.yml Notify maintainers of interest depending on labels added to an issue We utilize lightning-probot forked from PyTorchs probot.
.github/workflows/probot-check-group.yml, .github/checkgroup.yml Checks whether the relevant jobs were successfully run based on the changed files in the PR
.pre-commit-config.yaml pre-commit.ci runs a set of linters and formatters, such as black, flake8 and isort. When formatting is applied, the bot pushes a commit with its change. This configuration is also used for running pre-commit locally.