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

.murdock: Remove board sanity check

With external board folders supported (and used within RIOT's code base in
testing applications), boards can be outside of the /boards folder.
This commit is contained in:
Marian Buschsieweke 2020-04-24 10:05:31 +02:00
parent 93f8f8cd84
commit 37d5d571c8
No known key found for this signature in database
GPG Key ID: 61F64C6599B1539F

View File

@ -230,7 +230,6 @@ compile() {
# sanity checks
[ $# -ne 2 ] && error "$0: compile: invalid parameters (expected \$appdir \$board:\$toolchain)"
[ ! -d "$appdir" ] && error "$0: compile: error: application directory \"$appdir\" doesn't exist"
[ ! -d "boards/$board" ] && error "$0: compile: error: board directory \"boards/$board\" doesn't exist"
# compile
CCACHE_BASEDIR="$(pwd)" BOARD=$board TOOLCHAIN=$toolchain RIOT_CI_BUILD=1 \