Skip to content

Commit

Permalink
[CI] Port remaining GPU tests to GitHub Actions (#593)
Browse files Browse the repository at this point in the history
* add workflow for testing interpretation task

* add workflow for testing random search task

* add workflow for testing resume task

* add workflow for testing transfer learning task

* trigger CI

* trigger CI
  • Loading branch information
NicolasGensollen authored May 23, 2024
1 parent f5de251 commit 69b3538
Show file tree
Hide file tree
Showing 4 changed files with 212 additions and 0 deletions.
53 changes: 53 additions & 0 deletions .github/workflows/test_interpret.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
name: Interpretation Tests (GPU)

on:
push:
branches: ["dev", "refactoring"]
pull_request:
branches: ["dev", "refactoring"]

permissions:
contents: read

concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: true

env:
POETRY_VERSION: '1.8.3'
PYTHON_VERSION: '3.11'

jobs:
test-interpret-gpu:
if: github.event.pull_request.draft == false
runs-on:
- self-hosted
- Linux
- ubuntu
- gpu
steps:
- uses: actions/checkout@v4
- uses: snok/install-poetry@v1
with:
version: ${{ env.POETRY_VERSION }}
virtualenvs-create: false
- uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Run tests for Interpret task on GPU
run: |
make env.conda
source "${HOME}/miniconda3/etc/profile.d/conda.sh"
conda activate "${{ github.workspace }}"/env
make install
cd tests
poetry run pytest --verbose \
--junitxml=./test-reports/test_interpret_report.xml \
--disable-warnings \
--verbose \
--basetemp=$HOME/actions_runner_workdir/interpret \
--input_data_directory=/mnt/data/clinicadl_data_ci/data_ci \
test_interpret.py
- name: Cleaning
run: |
rm -rf $HOME/actions_runner_workdir/interpret/*
53 changes: 53 additions & 0 deletions .github/workflows/test_random_search.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
name: Random Search Tests (GPU)

on:
push:
branches: ["dev", "refactoring"]
pull_request:
branches: ["dev", "refactoring"]

permissions:
contents: read

concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: true

env:
POETRY_VERSION: '1.8.3'
PYTHON_VERSION: '3.11'

jobs:
test-random-search-gpu:
if: github.event.pull_request.draft == false
runs-on:
- self-hosted
- Linux
- ubuntu
- gpu
steps:
- uses: actions/checkout@v4
- uses: snok/install-poetry@v1
with:
version: ${{ env.POETRY_VERSION }}
virtualenvs-create: false
- uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Run Random Search tests on GPU
run: |
make env.conda
source "${HOME}/miniconda3/etc/profile.d/conda.sh"
conda activate "${{ github.workspace }}"/env
make install
cd tests
poetry run pytest --verbose \
--junitxml=./test-reports/test_random_search_report.xml \
--disable-warnings \
--verbose \
--basetemp=$HOME/actions_runner_workdir/random_search \
--input_data_directory=/mnt/data/clinicadl_data_ci/data_ci \
test_random_search.py
- name: Cleaning
run: |
rm -rf $HOME/actions_runner_workdir/random_search/*
53 changes: 53 additions & 0 deletions .github/workflows/test_resume.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
name: Resume Tests (GPU)

on:
push:
branches: ["dev", "refactoring"]
pull_request:
branches: ["dev", "refactoring"]

permissions:
contents: read

concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: true

env:
POETRY_VERSION: '1.8.3'
PYTHON_VERSION: '3.11'

jobs:
test-resume-gpu:
if: github.event.pull_request.draft == false
runs-on:
- self-hosted
- Linux
- ubuntu
- gpu
steps:
- uses: actions/checkout@v4
- uses: snok/install-poetry@v1
with:
version: ${{ env.POETRY_VERSION }}
virtualenvs-create: false
- uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Run resume tests on GPU
run: |
make env.conda
source "${HOME}/miniconda3/etc/profile.d/conda.sh"
conda activate "${{ github.workspace }}"/env
make install
cd tests
poetry run pytest --verbose \
--junitxml=./test-reports/test_resume_report.xml \
--disable-warnings \
--verbose \
--basetemp=$HOME/actions_runner_workdir/resume \
--input_data_directory=/mnt/data/clinicadl_data_ci/data_ci \
test_resume.py
- name: Cleaning
run: |
rm -rf $HOME/actions_runner_workdir/resume/*
53 changes: 53 additions & 0 deletions .github/workflows/test_transfer_learning.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
name: Transfer Learning Tests (GPU)

on:
push:
branches: ["dev", "refactoring"]
pull_request:
branches: ["dev", "refactoring"]

permissions:
contents: read

concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: true

env:
POETRY_VERSION: '1.8.3'
PYTHON_VERSION: '3.11'

jobs:
test-transfer-learning-gpu:
if: github.event.pull_request.draft == false
runs-on:
- self-hosted
- Linux
- ubuntu
- gpu
steps:
- uses: actions/checkout@v4
- uses: snok/install-poetry@v1
with:
version: ${{ env.POETRY_VERSION }}
virtualenvs-create: false
- uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Run tests for Transfer Learning on GPU
run: |
make env.conda
source "${HOME}/miniconda3/etc/profile.d/conda.sh"
conda activate "${{ github.workspace }}"/env
make install
cd tests
poetry run pytest --verbose \
--junitxml=./test-reports/test_transfer_learning_report.xml \
--disable-warnings \
--verbose \
--basetemp=$HOME/actions_runner_workdir/transfer_learning \
--input_data_directory=/mnt/data/clinicadl_data_ci/data_ci \
test_transfer_learning.py
- name: Cleaning
run: |
rm -rf $HOME/actions_runner_workdir/transfer_learning/*

0 comments on commit 69b3538

Please sign in to comment.