Skip to content

Commit

Permalink
Improve text of uploaded reports
Browse files Browse the repository at this point in the history
  • Loading branch information
vmordan committed Oct 18, 2023
1 parent 1f15c7e commit 143c399
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions scripts/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,8 @@
TAG_EXPORTER = "Exporter"
TAG_VERSION = "version"
TAG_PROPERTIES = "requirement specifications"
TAG_UPLOADER = "uploader"
TAG_NAME = "name"

DEFAULT_CONFIG_COMMAND = "allmodconfig"
DEFAULT_ARCH = "x86_64"
Expand Down Expand Up @@ -177,6 +179,8 @@ def __update_job_config(self, build_base_dir: str):
bridge_config[TAG_EXPORTER][TAG_VERSION] = self.version
if self.properties:
job_config[TAG_PROPERTIES] = self.properties
uploaded_name = f"{'_'.join(self.properties)} - {self.version} - <timestamp>"
bridge_config[TAG_UPLOADER][TAG_NAME] = uploaded_name
bridge_config[COMPONENT_BENCHMARK_LAUNCHER][TAG_OUTPUT_DIR] = \
os.path.join(self.klever_deploy_dir, KLEVER_TASKS_DIR)
bridge_config[COMPONENT_BENCHMARK_LAUNCHER][TAG_TASKS_DIR] = \
Expand Down

0 comments on commit 143c399

Please sign in to comment.