interchange: add archcheck tests to all-device-test target

This increases parallelism and should make the FPGA interchange CI
faster

Signed-off-by: Alessandro Comodi <acomodi@antmicro.com>
This commit is contained in:
Alessandro Comodi 2021-03-26 10:24:59 +01:00
parent 0e9a1abc7e
commit b5ba3ee9ee
2 changed files with 6 additions and 3 deletions

View File

@ -90,6 +90,4 @@ jobs:
DEVICE: ${{ matrix.device }} DEVICE: ${{ matrix.device }}
run: | run: |
cd build cd build
make chipdb-$DEVICE-bin-check-test-data
make chipdb-$DEVICE-bin-check
make all-$DEVICE-tests -j`nproc` make all-$DEVICE-tests -j`nproc`

View File

@ -370,6 +370,11 @@ function(generate_chipdb)
add_dependencies(all-${family}-archcheck-tests chipdb-${device}-bin-check-test-data chipdb-${device}-bin-check) add_dependencies(all-${family}-archcheck-tests chipdb-${device}-bin-check-test-data chipdb-${device}-bin-check)
# All tests targets for this device are added to this target # All tests targets for this device are added to this target
add_custom_target(all-${device}-tests) add_custom_target(
all-${device}-tests
DEPENDS
chipdb-${device}-bin-check-test-data
chipdb-${device}-bin-check
)
endfunction() endfunction()