ci: switch to amazon runners (#4) #23
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: Unit Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
unittest: | |
strategy: | |
matrix: | |
include: | |
- runs-on: "linux.2xlarge" | |
gpu-arch-type: "cpu" | |
gpu-arch-version: "" | |
- runs-on: "linux.4xlarge.nvidia.gpu" | |
gpu-arch-type: "cuda" | |
gpu-arch-version: "12.1" | |
uses: pytorch/test-infra/.github/workflows/linux_job.yml@main | |
with: | |
timeout: 120 | |
runner: ${{ matrix.runs-on }} | |
gpu-arch-type: ${{ matrix.gpu-arch-type }} | |
gpu-arch-version: ${{ matrix.gpu-arch-version }} | |
script: | | |
conda create -n venv python=3.10 protobuf -y | |
conda activate venv | |
yum install -y rust cargo | |
python -m pip install --upgrade pip | |
pip install -e .[dev] -v | |
pytest -v | |
cargo test -v | |