From 4ec487c44f9766527556dc7524a6ec369c3b4b8e Mon Sep 17 00:00:00 2001 From: Michael Schubert Date: Fri, 2 Dec 2016 17:17:49 -0500 Subject: [PATCH] pulse api: Also match output.txt so debugging pulse-cloud install failures is easier --- ci/pulse/api/lib/pulse_build_result.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/pulse/api/lib/pulse_build_result.rb b/ci/pulse/api/lib/pulse_build_result.rb index 96c56c3f98..36f4d9f6bb 100644 --- a/ci/pulse/api/lib/pulse_build_result.rb +++ b/ci/pulse/api/lib/pulse_build_result.rb @@ -36,7 +36,7 @@ class PulseBuildResult puts "\n=== Artifacts ===\n" @build_artifacts.each do |artifact| artifact_name = artifact["name"] - next unless (artifact_name =~ /\.log/ || artifact_name =~ /\.out/) + next unless (artifact_name =~ /\.log/ || artifact_name =~ /\.out/ || artifact_name =~ /output\.txt/) # convert "Test Results (results.log) into 'results.log'" artifact_name.gsub!(/.*\((.*)\)/) { |match| "#{$1}" } -- GitLab