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
if we run make user_project_wrapper from a CI like github actions, it will fail with tty errors.
This is because the docker is invoked with the -it flags.
It would be nice to have a recipe we could call from CI like:
docker run -v $(OPENLANE_ROOT):/openLANE_flow
-v $(PDK_ROOT):$(PDK_ROOT)
-v $(PWD)/..:/project
-v $(CARAVEL_ROOT):$(CARAVEL_ROOT)
-e PDK_ROOT=$(PDK_ROOT)
-e CARAVEL_ROOT=$(CARAVEL_ROOT)
-u $(shell id -u $(USER)):$(shell id -g $(USER)) $(OPENLANE_IMAGE_NAME) sh -c $(OPENLANE_BASIC_COMMAND);\
The text was updated successfully, but these errors were encountered:
if we run make user_project_wrapper from a CI like github actions, it will fail with tty errors.
This is because the docker is invoked with the -it flags.
It would be nice to have a recipe we could call from CI like:
docker run -v $(OPENLANE_ROOT):/openLANE_flow$(PDK_ROOT):$ (PDK_ROOT) $(CARAVEL_ROOT):$ (CARAVEL_ROOT) $(shell id -u $ (USER)):$(shell id -g $(USER))
$(OPENLANE_IMAGE_NAME) sh -c $ (OPENLANE_BASIC_COMMAND);\
-v
-v $(PWD)/..:/project
-v
-e PDK_ROOT=$(PDK_ROOT)
-e CARAVEL_ROOT=$(CARAVEL_ROOT)
-u
The text was updated successfully, but these errors were encountered: