mirror of https://github.com/openXC7/prjxray.git
disable extra-parts generation due to high run-time
Signed-off-by: Alessandro Comodi <acomodi@antmicro.com>
This commit is contained in:
parent
e03f635ed8
commit
5f277c2d30
|
|
@ -86,12 +86,20 @@ echo "----------------------------------------"
|
|||
)
|
||||
echo "----------------------------------------"
|
||||
|
||||
# Generate extra files (additional part yaml's, harness, etc).
|
||||
# Generate extra harness files (additional part yaml's, harness).
|
||||
set +e
|
||||
# Attempt to generate extra harnesses here, but don't check until after diff reporting.
|
||||
make db-extras-${XRAY_SETTINGS}-harness
|
||||
EXTRAS_HARNESS_RET=$?
|
||||
set -e
|
||||
|
||||
# Generate extra parts file (tilegrid, tileconn, part yaml, part json and package_pin)
|
||||
# TODO: Disabled for now as for big parts it takes a huge amount of time
|
||||
#set +e
|
||||
#make db-extras-${XRAY_SETTINGS}-parts -j $CORES
|
||||
EXTRAS_PARTS_RET=0
|
||||
#set -e
|
||||
|
||||
# Format the database
|
||||
make db-format-${XRAY_SETTINGS}
|
||||
# Update the database/Info.md file
|
||||
|
|
@ -183,13 +191,6 @@ echo "----------------------------------------"
|
|||
)
|
||||
echo "----------------------------------------"
|
||||
|
||||
# Calculating extra parts here, to avoid the huge diff issue by the introduction
|
||||
# of new parts
|
||||
set +e
|
||||
make db-extras-${XRAY_SETTINGS}-parts -j $CORES
|
||||
EXTRAS_PARTS_RET=$?
|
||||
set -e
|
||||
|
||||
# Check the database and fail if it is broken.
|
||||
make db-check-${XRAY_SETTINGS}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue