diff --git a/ci/pulse/api/lib/pulse_build_result.rb b/ci/pulse/api/lib/pulse_build_result.rb index 96c56c3f985034baf3a03225c61ebe0f1e2c95de..36f4d9f6bb3b7954a1d9655d57ed466a65b39333 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}" }