diff --git a/.gitea/workflows/kibot.yml b/.gitea/workflows/kibot.yml index e47872f..79d7cd4 100644 --- a/.gitea/workflows/kibot.yml +++ b/.gitea/workflows/kibot.yml @@ -23,7 +23,7 @@ on: board_layers: description: 'Number of PCB layers' required: false - default: '2' + default: '4' type: choice options: - '2' @@ -130,7 +130,8 @@ jobs: echo "Using config: ${GITHUB_WORKSPACE}/kibot.yaml" # Run KiBot with the configuration from repo root - kibot -c "${GITHUB_WORKSPACE}/kibot.yaml" -d Fabrication -v + # Skip ERC/DRC preflight checks to avoid stopping on errors + kibot -c "${GITHUB_WORKSPACE}/kibot.yaml" -s run_erc,run_drc -d Fabrication -v # Move outputs to root Generated folder mkdir -p "${GITHUB_WORKSPACE}/Generated"