fix fail fast in CI

This commit is contained in:
George Hotz
2023-08-05 10:24:24 -07:00
parent bd7f4b1249
commit 67781fcf5d
2 changed files with 4 additions and 13 deletions

View File

@@ -102,6 +102,7 @@ jobs:
testopencl:
strategy:
fail-fast: false
matrix:
task: [optimage, openpilot]
name: ${{ matrix.task=='optimage'&&'GPU OPT and IMAGE Tests'||'openpilot (OpenCL) Tests'}}
@@ -188,21 +189,9 @@ jobs:
- name: Build WEBGPU Efficientnet
run: WEBGPU=1 WGPU_BACKEND_TYPE=Metal python -m examples.compile_efficientnet
testdocker:
name: Docker Test
runs-on: ubuntu-latest
if: ${{ false }}
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Build Docker
run: docker build -t tinygrad -f test/Dockerfile .
- name: Test Docker
run: docker run --rm tinygrad /usr/bin/env python3 -c "from tinygrad.tensor import Tensor; print(Tensor.eye(3).numpy())"
tests:
strategy:
fail-fast: false
matrix:
backend: [llvm, clang, gpu, cuda]