Skip to content
Snippets Groups Projects
Commit 0a9b0ce7 authored by Kaspar Schleiser's avatar Kaspar Schleiser
Browse files

CI: murdock2: compile everything in same directory

parent 28ce575c
No related branches found
No related tags found
No related merge requests found
......@@ -62,6 +62,11 @@ compile() {
local appdir=$1
local board=$2
# set build directory. CI ensures only one build at a time in $(pwd).
rm -rf build
export BINDIR="$(pwd)/build"
export PKGDIRBASE="${BINDIR}/pkg"
[ -n "$DWQ_WORKER" ] && \
echo "-- running on worker ${DWQ_WORKER} thread ${DWQ_WORKER_THREAD}, build number $DWQ_WORKER_BUILDNUM."
......@@ -81,8 +86,10 @@ compile() {
fi
fi
echo "-- build directory size: $(du -sh ${BINDIR} | cut -f1)"
# cleanup
rm -Rf "${appdir}/bin/${board}" "${appdir}/bin/pkg/${board}"
rm -Rf build
return $RES
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment