From ffbeb9b5c2a1cf4237b92e369c7493f875acd5b3 Mon Sep 17 00:00:00 2001 From: Kenneth Myhra Date: Sun, 2 Aug 2026 15:39:16 +0200 Subject: [PATCH] CI: Invoke rake task directly instead of using execute_all.sh --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9e665af..f2455e2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -118,7 +118,7 @@ jobs: run: | set +e docker compose run --rm --no-deps plan_executor \ - ./execute_all.sh 'http://spark:8080/fhir' "$FHIR_VERSION" 'html|json|stdout' 2>&1 | tee logs/execute_all.log + bundle exec rake "crucible:execute_all[http://spark:8080/fhir,$FHIR_VERSION,html|json|stdout]" 2>&1 | tee logs/execute_all.log suite_status=${PIPESTATUS[0]} printf '%s\n' "$suite_status" > suite-exit-status echo "suite_status=$suite_status" >> "$GITHUB_OUTPUT"