Update ort CIs (slow, gpu, train) #3676
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
name: ONNX Runtime GPU / Python - Test | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
types: | |
- opened | |
- reopened | |
- labeled | |
- unlabeled | |
- synchronize | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
if: ${{ | |
(github.event_name == 'push') || | |
(github.event_name == 'workflow_dispatch') || | |
contains( github.event.pull_request.labels.*.name, 'gpu') || | |
contains(github.event.pull_request.labels.*.name, 'onnxruntime-gpu') | |
}} | |
runs-on: | |
group: aws-g6-4xlarge-plus | |
container: | |
image: nvidia/cuda:12.4.1-cudnn-runtime-ubuntu22.04 | |
options: --gpus all | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.8 | |
- name: Install dependencies | |
run: | | |
pip install --upgrade pip | |
pip install --no-cache-dir torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu124 | |
pip install .[tests,onnxruntime-gpu] | |
- name: Replace opencv-python with opencv-python-headless | |
run: | | |
pip uninstall -y opencv-python && pip install opencv-python-headless | |
- name: Test with pytest | |
run: | | |
pytest tests/onnxruntime -m "cuda_ep_test" --durations=0 -vvvv -s -n auto |