Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .cirun.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
runners:
- name: aws-gpu-runner
cloud: aws
instance_type: g4dn.xlarge
machine_image: ami-067a4ba2816407ee9
region: eu-north-1
preemptible:
- true
- false
labels:
- cirun-aws-gpu
11 changes: 9 additions & 2 deletions .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,16 @@ jobs:
- {name: "pertpy", extras: "de"}
- {name: "decoupler", extras: ""}
- {name: "SnapATAC2", extras: ""}
- {name: "rapids_singlecell", extras: "rapids12", gpu: true}
exclude:
- { python: 3.12, is_pre: true }

defaults:
run:
shell: bash -el {0}

runs-on: ubuntu-latest
runs-on: ${{ matrix.package.gpu && format('cirun-aws-gpu--{0}', github.run_id) || 'ubuntu-latest' }}

env:
# This env variable is used by the `gh` CLI
GH_TOKEN: ${{ secrets.TOKEN_FOR_ISSUE_WRITE }}
Expand All @@ -60,6 +61,10 @@ jobs:
filter: blob:none
path: ${{ matrix.package.name }}

- name: Nvidia SMI sanity check
if: matrix.package.gpu
run: nvidia-smi

- name: Install Python
uses: actions/setup-python@v5
with:
Expand All @@ -77,6 +82,8 @@ jobs:
uv pip install --system toml-cli
- name: Install AnnData and scverse package
env:
UV_EXTRA_INDEX_URL: ${{ matrix.package.gpu && 'https://pypi.nvidia.com' || '' }}
run: |
EXTRAS=""
GROUP=""
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ The following packages are tested:
- pertpy
- decoupler
- SnapATAC2
- rapids-singlecell

## How it Works

Expand Down
Loading