Skip to content

Run CI on Modal, upgrade Bitsandbytes #44

Run CI on Modal, upgrade Bitsandbytes

Run CI on Modal, upgrade Bitsandbytes #44

name: Modal tests
on:
push:
branches: [master]
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
run_tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
fail-fast: false
env:
MODAL_TOKEN_ID: ${{ secrets.MODAL_TOKEN_ID }}
MODAL_TOKEN_SECRET: ${{ secrets.MODAL_TOKEN_SECRET }}
PYTHON_VERSION: ${{ matrix.python-version }}
timeout-minutes: 15
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Cache dependencies
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: Key-v1-3.12-modal
- name: Install build dependencies
run: |
python -m pip install --upgrade pip
pip install modal==0.73.32
- name: Run tests
run: |
modal run modal_ci.py::run_tests
measure_coverage:
runs-on: ubuntu-latest
env:
MODAL_TOKEN_ID: ${{ secrets.MODAL_TOKEN_ID }}
MODAL_TOKEN_SECRET: ${{ secrets.MODAL_TOKEN_SECRET }}
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
PYTHON_VERSION: "3.11"
timeout-minutes: 15
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Cache dependencies
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: Key-v1-3.12-modal
- name: Install build dependencies
run: |
python -m pip install --upgrade pip
pip install modal==0.73.32
- name: Measure and upload coverage
run: |
modal run modal_ci.py::run_codecov
build_and_test_p2pd:
runs-on: ubuntu-latest
env:
MODAL_TOKEN_ID: ${{ secrets.MODAL_TOKEN_ID }}
MODAL_TOKEN_SECRET: ${{ secrets.MODAL_TOKEN_SECRET }}
GITHUB_EVENT_PULL_REQUEST_HEAD_SHA: ${{ github.event.pull_request.head.sha }}
PYTHON_VERSION: "3.11"
timeout-minutes: 10
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Cache dependencies
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: Key-v1-3.12-modal
- name: Install build dependencies
run: |
python -m pip install --upgrade pip
pip install modal==0.73.32
- name: Run p2pd tests
run: |
modal run modal_ci.py::build_and_test_p2pd