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

murdock: split get_jobs()

This commit is contained in:
Kaspar Schleiser 2019-06-28 15:49:27 +02:00
parent bc6303fb59
commit 5c676dea23

View File

@ -287,9 +287,13 @@ static_tests() {
BUILDTEST_MCU_GROUP=static-tests ./dist/tools/ci/build_and_test.sh
}
get_jobs() {
get_non_compile_jobs() {
[ "$STATIC_TESTS" = "1" ] && \
echo "$0 static_tests###{ \"jobdir\" : \"exclusive\" }"
}
get_jobs() {
get_non_compile_jobs
get_compile_jobs
}