By now, can we run a specific part of precheck lik...
# shuttle-precheck
p
By now, can we run a specific part of precheck like only KLAYOUT FEOL check without running any other checks? suggestions needed to do this in both local system and Efabless server
d
This command works for me in local system docker run -e PROJ_ROOT=$PROJ_ROOT -e PDK_ROOT=$PDK_ROOT -e PRECHECK_ROOT:$PRECHECK_ROOT -v $PRECHECK_ROOT:$PRECHECK_ROOT -v $PROJ_ROOT:$PROJ_ROOT -v $PDK_ROOT:$PDK_ROOT -u 1000:1002 efabless/mpw_precheck:latest bash -c "cd $PRECHECK_ROOT ; python3 mpw_precheck.py --pdk_root $PDK_ROOT --input_directory $PROJ_ROOT consistency"
👍 1
export PROJ_ROOT=<your project_root> export PDK_ROOT=<your pdk_path> export PRECHECK_ROOT=<your precheck installed path> I have run for "consistency" check , you can change the consistency to required one
p
Thanks, I will try it out