From ee6a0b35706542c609314a4b0e9ba6eb839c004d Mon Sep 17 00:00:00 2001 From: Pratik Bhadane Date: Tue, 24 Mar 2026 02:44:04 +0530 Subject: [PATCH] fix(ci): skip SIMD benchmark in perf-smoke job bench_simd.py re-invokes `maturin develop` at runtime to compare portable vs SIMD builds, which requires an active virtualenv. CI installs into system Python so maturin develop fails with "Couldn't find a virtualenv". --skip-simd avoids this; the SIMD comparison is optional profiling, not a correctness gate. Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/ci-python.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci-python.yml b/.github/workflows/ci-python.yml index 20daf3d..8a8c2b0 100644 --- a/.github/workflows/ci-python.yml +++ b/.github/workflows/ci-python.yml @@ -151,6 +151,7 @@ jobs: python benchmarks/run_perf_contract.py \ --output-dir perf-contract \ --skip-talib \ + --skip-simd \ --batch-samples 20000 \ --batch-series 32 \ --streaming-bars 20000 \