-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
disable gpu tests until I can self-host
- Loading branch information
Showing
1 changed file
with
51 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,50 +1,51 @@ | ||
name: GPU Tests | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
|
||
jobs: | ||
gpu-test: | ||
runs-on: ubuntu-20.04 | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Set up Python 3.7 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.7' | ||
|
||
- name: Install FFMPEG | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y ffmpeg | ||
- name: Install PySide2 | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install "pyside2==5.13.2" | ||
- name: Install PyTorch with CUDA | ||
run: | | ||
pip install torch==1.11.0+cu115 torchvision==0.12.0+cu115 -f https://download.pytorch.org/whl/torch_stable.html | ||
- name: Install package and test dependencies | ||
run: | | ||
python -m pip install --upgrade "pip<24.0" | ||
pip install -r requirements.txt | ||
pip install pytest pytest-cov | ||
python setup.py develop | ||
- name: Setup test data | ||
run: | | ||
python setup_tests.py | ||
- name: GPU Tests | ||
run: | | ||
pytest -v -m "gpu" tests/ | ||
env: | ||
CUDA_VISIBLE_DEVICES: 0 | ||
# Temporarily disabled - requires GitHub Teams plan for GPU runners | ||
# name: GPU Tests | ||
# | ||
# on: | ||
# push: | ||
# branches: [ master ] | ||
# pull_request: | ||
# branches: [ master ] | ||
# | ||
# jobs: | ||
# gpu-test: | ||
# runs-on: ubuntu-20.04 | ||
# | ||
# steps: | ||
# - uses: actions/checkout@v3 | ||
# | ||
# - name: Set up Python 3.7 | ||
# uses: actions/setup-python@v4 | ||
# with: | ||
# python-version: '3.7' | ||
# | ||
# - name: Install FFMPEG | ||
# run: | | ||
# sudo apt-get update | ||
# sudo apt-get install -y ffmpeg | ||
# | ||
# - name: Install PySide2 | ||
# run: | | ||
# python -m pip install --upgrade pip | ||
# pip install "pyside2==5.13.2" | ||
# | ||
# - name: Install PyTorch with CUDA | ||
# run: | | ||
# pip install torch==1.11.0+cu115 torchvision==0.12.0+cu115 -f https://download.pytorch.org/whl/torch_stable.html | ||
# | ||
# - name: Install package and test dependencies | ||
# run: | | ||
# python -m pip install --upgrade "pip<24.0" | ||
# pip install -r requirements.txt | ||
# pip install pytest pytest-cov | ||
# python setup.py develop | ||
# | ||
# - name: Setup test data | ||
# run: | | ||
# python setup_tests.py | ||
# | ||
# - name: GPU Tests | ||
# run: | | ||
# pytest -v -m "gpu" tests/ | ||
# env: | ||
# CUDA_VISIBLE_DEVICES: 0 |