commit | 13a5dde08f6c841ae891652c7d9deb57536a2e3c | [log] [tgz] |
---|---|---|
author | Cindy Chen <chencindy@google.com> | Mon Dec 21 09:31:56 2020 -0800 |
committer | cindychip <cindy.chen0316@gmail.com> | Mon Dec 21 13:06:12 2020 -0800 |
tree | 521d0014894bbd6e41b6b7b99e1cb17dbd2ca432 | |
parent | 8363a360977b5427df71d0431a9e6cdacf9d7519 [diff] |
[dvsim] Fix regression publish result link with --remote switch If we use `--remote` switch, the result summary path is not correct. This is because to remove the root directory and get `rel_path` in FlowCfg, we used ``` if self.rel_path == "": self.rel_path = os.path.dirname(self.flow_cfg_file).replace( self.proj_root + '/', '') ``` For this one, if remote switch is on, the self.proj_root is remote repo_top. However, `self.flow_cfg_file` still uses the local abs path, so the rel_path ended up still include the absolute path. This PR fixed it by using the remote `cfg_path` if --remote is turned on. Signed-off-by: Cindy Chen <chencindy@google.com>
OpenTitan is an open source silicon Root of Trust (RoT) project. OpenTitan will make the silicon RoT design and implementation more transparent, trustworthy, and secure for enterprises, platform providers, and chip manufacturers. OpenTitan is administered by lowRISC CIC as a collaborative project to produce high quality, open IP for instantiation as a full-featured product. See the OpenTitan site and OpenTitan docs for more information about the project.
This repository contains hardware, software and utilities written as part of the OpenTitan project. It is structured as monolithic repository, or “monorepo”, where all components live in one repository. It exists to enable collaboration across partners participating in the OpenTitan project.
The project contains comprehensive documentation of all IPs and tools. You can access it online at docs.opentitan.org.
Have a look at CONTRIBUTING for guidelines on how to contribute code to this repository.
Unless otherwise noted, everything in this repository is covered by the Apache License, Version 2.0 (see LICENSE for full text).