From 4d1db584f99b883bf7797f6f502b159c07ab8645 Mon Sep 17 00:00:00 2001 From: Charles Oliver Nutter Date: Mon, 6 Nov 2023 16:28:49 -0600 Subject: [PATCH] Switch rubyspec CI to specdoc output Failures that do not report properly are impossible to investigate with dot or file output. --- rakelib/rubyspec.rake | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rakelib/rubyspec.rake b/rakelib/rubyspec.rake index 231a136fb90..d5060a272a6 100644 --- a/rakelib/rubyspec.rake +++ b/rakelib/rubyspec.rake @@ -14,7 +14,8 @@ namespace :spec do task :'ruby:aot' => :ci_precompiled if ENV['CI'] - MSPEC_FORMAT = "f" + # can't easily see file output on CI so we use specdoc + MSPEC_FORMAT = "s" else MSPEC_FORMAT = "d" end