From bd9357990c9bf1bc4b2ff73bf6f111d3f6e82271 Mon Sep 17 00:00:00 2001 From: Patrick Lehmann Date: Sun, 23 Jul 2023 23:43:30 +0200 Subject: [PATCH] Introduced new artifact names for performance measurements, benchmarks and application testing. --- .github/workflows/Parameters.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/Parameters.yml b/.github/workflows/Parameters.yml index 081cbae..4eadf00 100644 --- a/.github/workflows/Parameters.yml +++ b/.github/workflows/Parameters.yml @@ -4,7 +4,7 @@ # Unai Martinez-Corral # # # # ==================================================================================================================== # -# Copyright 2020-2022 The pyTooling Authors # +# Copyright 2020-2023 The pyTooling Authors # # # # Licensed under the Apache License, Version 2.0 (the "License"); # # you may not use this file except in compliance with the License. # @@ -232,7 +232,10 @@ jobs: ] artifact_names = { - "unittesting_xml": f"{name}-TestReportSummary-XML", + "unittesting_xml": f"{name}-UnitTestReportSummary-XML", + "perftesting_xml": f"{name}-PerformanceTestReportSummary-XML", + "benchtesting_xml": f"{name}-BenchmarkTestReportSummary-XML", + "apptesting_xml": f"{name}-ApplicationTestReportSummary-XML", "codecoverage_xml": f"{name}-CodeCoverage-XML", "codecoverage_html": f"{name}-CodeCoverage-HTML", "statictyping_html": f"{name}-StaticTyping-HTML",