From f1fdd2ccec236dc7c7fd377a8880cf0f1995de74 Mon Sep 17 00:00:00 2001 From: Christopher Milan Date: Tue, 12 May 2026 20:40:32 -0700 Subject: [PATCH] ci: add IMAGE=1 compile-only tests (#16182) * ci: add IMAGE=1 compile-only tests * fix --- .github/workflows/test.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e871d6a0e4..6ca3d9265e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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