Results archive command in ORFS #404
-
|
Hi @vvbandeira, Whether is there any command, I can use to archive my all logs/reports/results that specific runs? In openlane there is command In ORFS is there any such switch. Because by default i see Thanks, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
There are two features you can use to create a workflow that fits your needs. First, you can create archives (tar files) with Second, you can use the |
Beta Was this translation helpful? Give feedback.
There are two features you can use to create a workflow that fits your needs.
First, you can create archives (tar files) with
make <SCRIPT_NAME>_issuewhere<SCRIPT_NAME>is the name of the file inflow/scripts, e.g.,make cts_issue. This will create a tar file with logs, results and the necessary files to reproduce. This is more suitable to create testcases to report issues to developers.Second, you can use the
FLOW_VARIANTvariable on yourconfig.mkor directly on the command linemake FLOW_VARIANT=<TAG> [...]. This will create a folder with the same name to store files, e.g.,logs/sky130hd/gcd/<TAG>/*.log.