1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

murdock: don't do both "clean" and "test-input-hash" targets

This commit is contained in:
Kaspar Schleiser 2022-06-23 16:40:52 +02:00
parent ee988add7e
commit acfe8a1e5b

View File

@ -465,8 +465,9 @@ compile() {
fi
# compile without Kconfig
BOARD=${board} make -C${appdir} clean
CCACHE_BASEDIR="$(pwd)" BOARD=$board TOOLCHAIN=$toolchain RIOT_CI_BUILD=1 \
make -C${appdir} clean all test-input-hash -j${JOBS:-4}
make -C${appdir} all test-input-hash -j${JOBS:-4}
RES=$?
test_hash=$(test_hash_calc "$BINDIR")