Skip to content

Commit

Permalink
Update kernel version for CV exporter
Browse files Browse the repository at this point in the history
  • Loading branch information
vmordan committed Oct 16, 2023
1 parent 5e13ee9 commit d00c9b3
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions scripts/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@
TAG_OUTPUT_DIR = "output dir"
TAG_TASKS_DIR = "tasks dir"
TAG_CONFIG_COMMAND = "config command"
TAG_EXPORTER = "Exporter"
TAG_VERSION = "version"

DEFAULT_CONFIG_COMMAND = "allmodconfig"
DEFAULT_ARCH = "x86_64"
Expand Down Expand Up @@ -167,6 +169,10 @@ def __update_job_config(self, build_base_dir: str):
os.unlink(dst_build_base_dir)
os.symlink(build_base_dir, dst_build_base_dir)
job_config[TAG_BUILD_BASE] = build_base_dir_name
if TAG_EXPORTER not in job_config:
job_config[TAG_EXPORTER] = {}
if self.version:
job_config[TAG_EXPORTER][TAG_VERSION] = self.version
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 d00c9b3

Please sign in to comment.