Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
9cd332b
Migrate TPU tests to GitHub actions
carmocca Sep 13, 2022
9eac22e
No working dir
carmocca Sep 13, 2022
cafc78e
Keep _target
carmocca Sep 13, 2022
29b915c
Dont skip draft
carmocca Sep 13, 2022
822bcc4
CHECK_SLEEP
carmocca Sep 13, 2022
94adbf8
Not yet
carmocca Sep 13, 2022
e50c5b5
Merge branch 'master' into ci/migrate-tpu
carmocca Sep 30, 2022
8e79c58
Remove recurrent cleanup script
carmocca Sep 30, 2022
86d7e6f
Set secrets
carmocca Sep 30, 2022
477b565
a step cannot have both the `uses` and `run` keys
carmocca Sep 30, 2022
4c2091c
Version $PYTHON_VER was not found in the local cache
carmocca Sep 30, 2022
8d750e3
can't load package ... ($GOPATH not set)
carmocca Sep 30, 2022
77e9a70
The `set-env` command is disabled
carmocca Sep 30, 2022
c54d082
Try updating go
carmocca Sep 30, 2022
245a9f6
Merge branch 'master' into ci/migrate-tpu
carmocca Sep 30, 2022
18182a2
Match timeout
carmocca Sep 30, 2022
e3c32a6
Merge branch 'master' into ci/migrate-tpu
carmocca Oct 3, 2022
8685e2a
simplify path
carmocca Oct 3, 2022
34ba453
More cleanup
carmocca Oct 4, 2022
e79e147
Merge branch 'master' into ci/migrate-tpu
carmocca Oct 4, 2022
c79f115
Merge branch 'master' into ci/migrate-tpu
Borda Oct 5, 2022
1773d3f
Install coverage. Unmark draft
carmocca Oct 8, 2022
1cd4ee2
Update .github/workflows/ci-pytorch-test-tpu.yml
carmocca Oct 8, 2022
4011856
DEBUG echo
carmocca Oct 10, 2022
b216ba1
Merge branch 'master' into ci/migrate-tpu
carmocca Oct 10, 2022
981f2d8
Revert "DEBUG echo"
carmocca Oct 11, 2022
19dd229
More debug
carmocca Oct 13, 2022
f01cd56
Merge branch 'master' into ci/migrate-tpu
carmocca Oct 13, 2022
1685ba5
SSH
carmocca Oct 19, 2022
5f4384c
Im stupid
carmocca Oct 20, 2022
32bc317
Merge branch 'master' into ci/migrate-tpu
carmocca Oct 20, 2022
7146480
Remove always()
carmocca Oct 20, 2022
7b66c1a
Forgot some
carmocca Oct 21, 2022
7d85d40
Merge branch 'master' into ci/migrate-tpu
Borda Oct 21, 2022
ba7a859
Merge branch 'master' into ci/migrate-tpu
lantiga Oct 21, 2022
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
150 changes: 0 additions & 150 deletions .circleci/config.yml

This file was deleted.

1 change: 0 additions & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@

# CI/CD and configs
/.github/ @borda @carmocca @akihironitta @otaj
/.circleci/ @borda @carmocca @akihironitta @otaj
/.azure/ @borda @carmocca @akihironitta @otaj
/dockers/ @borda @carmocca @akihironitta @otaj
*.yml @borda @carmocca @akihironitta @otaj
Expand Down
15 changes: 7 additions & 8 deletions .github/checkgroup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,6 @@ subprojects:

# SECTION: pytorch_lightning

- id: "CI: CircleCI"
paths:
- ".circleci/**"
- ".github/workflows/ci-circleci.yml"
checks:
- "test-on-tpus"

- id: "pytorch_lightning"
paths:
# all examples don't need to be added because they aren't used in CI, but these are
Expand Down Expand Up @@ -58,7 +51,7 @@ subprojects:
- "pl-slow (macOS-11, 3.7, 1.11)"
- "pl-slow (ubuntu-20.04, 3.7, 1.11)"
- "pl-slow (windows-2022, 3.7, 1.11)"
# TODO: since this job cannot run on forks, it cannot be required or it will block all PL PRs from forks
# TODO: since this job has intermittent availability, it cannot be required or it will block all PL PRs from forks
#- "test-on-tpus"

- id: "pytorch_lightning: CPU"
Expand Down Expand Up @@ -110,6 +103,12 @@ subprojects:
checks:
- "pytorch-lightning (IPUs)"

- id: "pytorch-lightning: TPU"
paths:
- ".github/workflows/tpu-tests.yml"
checks:
- "test-on-tpus"

- id: "pytorch_lightning: Docs"
paths:
- "docs/source-pytorch/**"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
| 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 |
| test-on-tpus | .github/workflows/tpu-tests.yml | Run only TPU-specific tests. | TPU |

- \*Accelerators used in CI

Expand Down
36 changes: 0 additions & 36 deletions .github/workflows/ci-circleci.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/ci-pytorch-dockers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
strategy:
fail-fast: false
matrix:
# the config used in '.circleci/config.yml`'
# the config used in '.github/workflows/tpu-tests.yml'
python_version: ["3.7"]
xla_version: ["1.12"]
steps:
Expand Down
43 changes: 0 additions & 43 deletions .github/workflows/events-recurrent.yml

This file was deleted.

Loading