From b5d0d23fbe5334fcacea5f931cc4d9a9308eca27 Mon Sep 17 00:00:00 2001 From: phact Date: Fri, 12 Sep 2025 13:40:14 -0400 Subject: [PATCH] ci cpu only --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index eeab5a12..2defe2bb 100644 --- a/Makefile +++ b/Makefile @@ -186,8 +186,8 @@ test-ci: @set -e; \ echo "📦 Installing test dependencies..."; \ uv sync --group dev; \ - echo "🚀 Starting infra (OpenSearch + Dashboards + Langflow)"; \ - make infra; \ + echo "🚀 Starting infra (OpenSearch + Dashboards + Langflow) with CPU containers"; \ + docker compose -f docker-compose-cpu.yml up -d opensearch dashboards langflow; \ echo "⏳ Waiting for OpenSearch..."; \ for i in $$(seq 1 60); do \ curl -k -s https://localhost:9200 -u admin:$${OPENSEARCH_PASSWORD} >/dev/null 2>&1 && break || sleep 2; \