Skip to content

Commit 18a671a

Browse files
authored
7039 deprecating some self-hosted test (#7041)
Fixes #7039 ### Types of changes <!--- Put an `x` in all the boxes that apply, and remove the not applicable items --> - [x] Non-breaking change (fix or new feature that would not break existing functionality). - [ ] Breaking change (fix or new feature that would cause existing functionality to change). - [ ] New tests added to cover the changes. - [ ] Integration tests passed locally by running `./runtests.sh -f -u --net --coverage`. - [ ] Quick tests passed locally by running `./runtests.sh --quick --unittests --disttests`. - [ ] In-line docstrings updated. - [ ] Documentation updated, tested `make html` command in the `docs/` folder. --------- Signed-off-by: Wenqi Li <wenqil@nvidia.com>
1 parent e4dbfde commit 18a671a

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.github/workflows/docker.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,8 @@ jobs:
8080
docker image prune -f
8181
8282
docker_test_dockerhub:
83-
if: github.repository == 'Project-MONAI/MONAI'
83+
# if: github.repository == 'Project-MONAI/MONAI'
84+
if: ${{ false }} # disable self-hosted job project-monai/monai#7039
8485
needs: docker_build_dev
8586
container:
8687
image: docker://projectmonai/monai:latest

.github/workflows/pythonapp-gpu.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ concurrency:
1717

1818
jobs:
1919
GPU-quick-py3: # GPU with full dependencies
20-
if: ${{ github.repository == 'Project-MONAI/MONAI' && github.event.pull_request.merged != true }}
20+
# if: ${{ github.repository == 'Project-MONAI/MONAI' && github.event.pull_request.merged != true }}
21+
if: ${{ false }} # disable self-hosted job project-monai/monai#7039
2122
strategy:
2223
matrix:
2324
environment:

.github/workflows/setupapp.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ jobs:
2121
# - ubuntu 37 38 39 310-pip-
2222
# - os-latest-pip (shared)
2323
coverage-py3:
24-
if: github.repository == 'Project-MONAI/MONAI'
24+
# if: github.repository == 'Project-MONAI/MONAI'
25+
if: ${{ false }} # disable self-hosted job project-monai/monai#7039
2526
container:
2627
image: nvcr.io/nvidia/pytorch:22.04-py3
2728
options: --gpus all

0 commit comments

Comments
 (0)