You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -171,13 +171,13 @@ orfs.default(
171
171
use_repo(orfs, "docker_orfs")
172
172
```
173
173
174
-
Setting this attribute to a valid image and checksum will enable Bazel to automatically pull the image and extract ORFS artifacts.
174
+
Setting this attribute to a valid image and checksum will enable Bazel to automatically pull the image and extract ORFS artifacts on `bazel run` or `bazel build`:
175
175
176
176
```bash
177
177
bazel build <target>_<stage>
178
178
```
179
179
180
-
If the directory under the `<absolute_path>` does not exist, it will be created. If a relative path is provided, the `bazel run` command above will fail.
180
+
> **NOTE:**If `sha256` is set to an empty string `""`, Bazel will attempt to use a local image with name provided in the `image` field.
181
181
182
182
### Local flow
183
183
@@ -187,6 +187,8 @@ A locally built and modified [ORFS](https://openroad-flow-scripts.readthedocs.io
187
187
bazel run <target>_<stage>_deps -- <absolute_path>&&<absolute_path>/make do-<stage>
188
188
```
189
189
190
+
> **NOTE:** If the directory under the `<absolute_path>` does not exist, it will be created. If a relative path is provided, the `bazel run` command above will fail.
191
+
190
192
A convenient way to re-run the floorplan and view the results would be:
0 commit comments