ci: add IMAGE=1 compile-only tests (#16182)

* ci: add IMAGE=1 compile-only tests

* fix
This commit is contained in:
Christopher Milan 2026-05-12 20:40:32 -07:00 committed by GitHub
commit f1fdd2ccec
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1003,6 +1003,10 @@ jobs:
python -c "from tinygrad import Device; assert Device.DEFAULT == 'NULL'"
DEBUG=4 python3 test/backend/test_ops.py TestOps.test_add
python -m pytest -n=auto test/backend/test_ops.py --durations=20
- name: Run test_ops (IMAGE)
if: matrix.backend == 'ir3'
shell: bash
run: IMAGE=1 DEV="NULL:IR3:a630,IMAGE_PITCH_ALIGNMENT=64" python -m pytest -n=auto test/backend/test_ops.py --durations=20
qcomclcompiletests:
name: Compile-only (QCOM CL)
runs-on: ubuntu-24.04-arm
@ -1026,3 +1030,6 @@ jobs:
python -c "from tinygrad import Device; assert Device.DEFAULT == 'NULL'"
DEBUG=4 python3 test/backend/test_ops.py TestOps.test_add
python -m pytest -n=auto test/backend/test_ops.py --durations=20
- name: Run test_ops (IMAGE)
shell: bash
run: IMAGE=1 DEV="NULL:QCOMCL:a630,IMAGE_PITCH_ALIGNMENT=64" python -m pytest -n=auto test/backend/test_ops.py --durations=20