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

Move commands into directory


Signed-off-by: default avatarChrissi^ <chris@tinyhost.de>
parent 28c9a14a
No related branches found
No related tags found
No related merge requests found
......@@ -96,6 +96,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
mkdir -o output/cmd
# update toolchain to current release
......@@ -124,18 +125,18 @@ do
# 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
echo make clean $BROKEN GLUON_TARGET=$ARCHITECTURE $DEBUG -j${J} > output/cmd/${ARCHITECTURE}_make
echo make all $BROKEN GLUON_TARGET=$ARCHITECTURE $DEBUG -j${J} GLUON_RELEASE=${RELEASENAME} GLUON_BRANCH=$BRANCH GLUON_PRIORITY=$PRIO >> output/cmd/${ARCHITECTURE}_make
# Preparing build
# ###############
make clean $BROKEN GLUON_TARGET=$ARCHITECTURE $DEBUG -j${J}
echo \# make clean completed >> output/${ARCHITECTURE}_make
echo \# make clean completed >> output/cmd/${ARCHITECTURE}_make
# Doing the Build
# ###############
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 \# make all completed >> output/cmd/${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