activate all tasks
This commit is contained in:
@@ -325,11 +325,17 @@ jobs:
|
|||||||
|
|
||||||
# Run KiBot with the modified configuration
|
# Run KiBot with the modified configuration
|
||||||
# Skip ERC/DRC preflight checks to avoid stopping on errors
|
# Skip ERC/DRC preflight checks to avoid stopping on errors
|
||||||
# Explicitly run diff and datasheet download outputs
|
|
||||||
echo "Running KiBot with output directory: $OUTPUT_DIR"
|
echo "Running KiBot with output directory: $OUTPUT_DIR"
|
||||||
kibot -c /tmp/kibot_temp.yaml -s run_erc,run_drc -d "$OUTPUT_DIR" -v \
|
|
||||||
sch_diff pcb_diff download_datasheets $EXTRA_OUTPUTS || \
|
# Run all outputs (KiBot will run all by default when no specific outputs are listed)
|
||||||
kibot -c /tmp/kibot_temp.yaml -s run_erc,run_drc -d "$OUTPUT_DIR" -v
|
# Only add extra outputs if interactive diff is enabled
|
||||||
|
if [ "${{ github.event.inputs.enable_interactive_diff }}" = "true" ]; then
|
||||||
|
# Run with interactive diff outputs explicitly enabled
|
||||||
|
kibot -c /tmp/kibot_temp.yaml -s run_erc,run_drc -d "$OUTPUT_DIR" -v interactive_diff svg_diff
|
||||||
|
else
|
||||||
|
# Run all default outputs (everything with run_by_default: true)
|
||||||
|
kibot -c /tmp/kibot_temp.yaml -s run_erc,run_drc -d "$OUTPUT_DIR" -v
|
||||||
|
fi
|
||||||
|
|
||||||
# Move outputs to root Generated folder
|
# Move outputs to root Generated folder
|
||||||
mkdir -p "${GITHUB_WORKSPACE}/Generated"
|
mkdir -p "${GITHUB_WORKSPACE}/Generated"
|
||||||
|
|||||||
Reference in New Issue
Block a user