Fix container name in GPU CI tests #1441
Workflow file for this run
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: "gpu-ci" | |
on: | |
pull_request: | |
paths-ignore: | |
- "cmake/**" | |
- "config/**" | |
- "deps/**" | |
- "python/**" | |
- "setup.py" | |
- "include/**" | |
- "src/**" | |
- ".github/workflows/gpu-ci.yml" | |
- "tests/multi_gpu_tests.sh" | |
workflow_dispatch: | |
concurrency: | |
group: gpu-ci-skip-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
gpu-ci-concierge: | |
name: GPU CI Concierge | |
runs-on: ubuntu-20.04 | |
steps: | |
- run: 'echo "No gpu-ci required"' | |
python-interface-check: | |
name: Check Python Interface | |
runs-on: ubuntu-20.04 | |
needs: gpu-ci-concierge | |
steps: | |
- run: 'echo "No gpu-ci required"' | |
gpu-ci-flexflow: | |
name: Single Machine, Multiple GPUs Tests | |
runs-on: ubuntu-20.04 | |
needs: gpu-ci-concierge | |
steps: | |
- run: 'echo "No gpu-ci required"' |