Skip to content
Snippets Groups Projects
Commit 28c9a14a authored by chrissi^'s avatar chrissi^
Browse files

Add output of make commands


Signed-off-by: default avatarChrissi^ <chris@tinyhost.de>
parent 8b64a110
No related branches found
No related tags found
No related merge requests found
......@@ -83,6 +83,9 @@ DEBUG="V=s"
# (maybe define based on the branch?)
PRIO=0
# how parallel do you want to build?
J=10
# prepare site.conf from template
if [ -f site/site.conf ]; then
rm site/site.conf
......@@ -92,6 +95,7 @@ sed -i -e "s/AUTOUPDATERBRANCH/$BRANCH/g" site/site.conf
# remove old images to make sure we only upload the new shiny stuff
rm -rf output/images
mkdir -p output
# update toolchain to current release
......@@ -118,14 +122,20 @@ do
echo "#######################################"
echo "#######################################"
# Printing out command
# ####################
echo make clean $BROKEN GLUON_TARGET=$ARCHITECTURE $DEBUG -j${J} > output/${ARCHITECTURE}_make
echo make all $BROKEN GLUON_TARGET=$ARCHITECTURE $DEBUG -j${J} GLUON_RELEASE=${RELEASENAME} GLUON_BRANCH=$BRANCH GLUON_PRIORITY=$PRIO >> output/${ARCHITECTURE}_make
# Preparing build
# ###############
make clean $BROKEN GLUON_TARGET=$ARCHITECTURE $DEBUG -j24
make clean $BROKEN GLUON_TARGET=$ARCHITECTURE $DEBUG -j${J}
echo \# make clean completed >> output/${ARCHITECTURE}_make
# Doing the Build
# ###############
make all $BROKEN GLUON_TARGET=$ARCHITECTURE $DEBUG -j10 GLUON_RELEASE=${RELEASENAME} GLUON_BRANCH=$BRANCH GLUON_PRIORITY=$PRIO
make all $BROKEN GLUON_TARGET=$ARCHITECTURE $DEBUG -j${J} GLUON_RELEASE=${RELEASENAME} GLUON_BRANCH=$BRANCH GLUON_PRIORITY=$PRIO
echo \# make all completed >> output/${ARCHITECTURE}_make
echo Exiting with Code $?
done
......
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