2018-02-03 17:03:36 +01:00
language : c
sudo : false
os :
- linux
env :
global :
- DEVKITPRO=$HOME/devkitPro
2018-03-04 17:04:03 +01:00
- PORTLIBREPOS=$HOME/portlibrepos
2018-02-03 17:03:36 +01:00
- DEVKITPPC=${DEVKITPRO}/devkitPPC
2018-02-14 19:52:14 +01:00
- DEVKITARM=${DEVKITPRO}/devkitARM
2018-03-04 17:04:03 +01:00
cache :
apt : true
directories :
- "/home/travis/devkitPro"
- "/home/travis/portlibrepos"
before_cache :
- rm -rf $DEVKITPRO/*.7z
- rm -rf $DEVKITPRO/*.bz2
- rm -rf $DEVKITPRO/examples
2018-02-03 17:03:36 +01:00
2018-02-03 17:05:28 +01:00
addons :
apt :
packages :
- p7zip-full
2018-02-03 17:03:36 +01:00
before_install :
- mkdir -p "${DEVKITPRO}"
2018-03-04 17:04:03 +01:00
- mkdir -p "${PORTLIBREPOS}"
2018-03-04 17:06:36 +01:00
- 7z x -y ./loader/libs/portlibs.zip -o${DEVKITPRO}
2018-03-04 17:12:17 +01:00
- main_cwd=$(pwd)
2018-03-04 17:06:36 +01:00
- cd $DEVKITPRO
2018-03-04 17:04:03 +01:00
- wget https://github.com/devkitPro/installer/releases/download/v2.1.0/devkitPPCupdate.pl -O devkitPPCupdate.pl
- wget https://github.com/devkitPro/installer/releases/download/v2.1.0/devkitARMupdate.pl -O devkitARMupdate.pl
2018-02-03 17:03:36 +01:00
2018-03-04 17:06:36 +01:00
install :
2018-03-04 17:04:03 +01:00
- cd $DEVKITPRO
- perl devkitPPCupdate.pl
- perl devkitARMupdate.pl
- cd $PORTLIBREPOS
2018-03-04 18:46:48 +01:00
- ((git clone https://github.com/Maschell/dynamic_libs.git -b lib && (7z x -y ./dynamic_libs/libs/portlibs.zip -o${DEVKITPRO})) || (cd dynamic_libs && git pull)) && (cd dynamic_libs && ((make -j8 | grep -c "built ... ") && make install && echo "installed" ) || (echo "no need for make install" && make))
2018-03-04 17:24:54 +01:00
- (git clone https://github.com/dimok789/libiosuhax.git || (cd libiosuhax && git pull)) && (cd libiosuhax && make -j8 && make install)
- (git clone https://github.com/aliaspider/libfat.git || (cd libfat && git pull)) && (cd libfat && make wiiu-release && make wiiu-install)
2018-03-04 17:53:37 +01:00
- (git clone https://github.com/Maschell/libntfs-wiiu.git || (cd libntfs-wiiu && git pull)) && (cd libntfs-wiiu && make wiiu-install)
2018-03-04 18:46:48 +01:00
- (git clone https://github.com/Maschell/libutils.git || (cd libutils && git pull)) && (cd libutils && ((make -j8 | grep -c "built ... ") && make install && echo "installed" ) || (echo "no need for make install" && make))
- ((git clone https://github.com/Maschell/libgui.git && (7z x -y ./libgui/libs/portlibs.zip -o${DEVKITPRO})) || (cd libgui && git pull)) && (cd libgui && ((make -j8 | grep -c "built ... ") && make install) || echo "no need for make install")
- (git clone https://github.com/Maschell/fs_wrapper.git || (cd fs_wrapper && git pull)) && (cd fs_wrapper && ((make -j8 | grep -c "built ... ") && make install && echo "installed" ) || (echo "no need for make install" && make))
- (git clone https://github.com/Maschell/controller_patcher.git || (cd controller_patcher && git pull)) && (cd controller_patcher && ((make -j8 | grep -c "built ... ") && make install && echo "installed" ) || (echo "no need for make install" && make))
2018-02-03 17:03:36 +01:00
script :
2018-03-04 17:12:17 +01:00
- cd $main_cwd
2018-02-16 21:51:35 +01:00
- make && make install
2018-02-04 10:29:04 +01:00
- (cd loader && make)
2018-02-14 22:36:28 +01:00
- (cd plugins && make)
2018-02-04 11:03:56 +01:00
before_deploy :
2018-03-04 17:12:17 +01:00
- cd $main_cwd
2018-02-04 11:03:56 +01:00
- mkdir -p "wiiu/apps/wiiupluginloader"
2018-02-04 11:29:53 +01:00
- mkdir -p "wiiu/plugins"
2018-02-04 11:03:56 +01:00
- commit="$(git rev-parse --short=7 HEAD)"
2018-02-04 11:17:01 +01:00
- chmod +x gitrev.sh
- versiontag="$(./gitrev.sh)"
2018-02-04 11:03:56 +01:00
- (cd loader && make)
2018-02-14 22:52:16 +01:00
- find plugins -type f -name "*.mod" | xargs -i cp {} wiiu/plugins
2018-02-04 11:03:56 +01:00
- cp loader/meta/* wiiu/apps/wiiupluginloader
2018-02-04 11:06:42 +01:00
- cp loader/wiiupluginloader.elf wiiu/apps/wiiupluginloader
2018-02-04 11:29:53 +01:00
- zip -r WiiUPluginLoader_$versiontag.zip wiiu
2018-02-04 11:03:56 +01:00
- git config --global user.email "builds@travis-ci.com"
- git config --global user.name "Travis CI"
- export GIT_TAG=WiiUPluginLoader-$versiontag
- commitLog="$(git log -1 --pretty=%B)"
2018-02-18 19:03:51 +01:00
- commitMessage="$(echo -e "-\n" && echo "WiiUPluginLoader nightly build. Not a stable release. Expect bugs!\n Only use the plugins with the bundled loaded as they may not work on others." && echo -e "\nCommitlog:\n")"
2018-02-04 11:03:56 +01:00
- git tag $GIT_TAG -a -m "$commitMessage" -m "$commitLog"
- git push --quiet https://$GITHUBKEY@github.com/Maschell/WiiUPluginSystem $GIT_TAG > /dev/null 2>&1
deploy :
provider : releases
skip_cleanup : true
prerelease : true
api_key :
2018-02-04 11:12:15 +01:00
secure : "BdoeihqS+jQGq98cPyF22iCKx68stGSWa3t5ZotLcp8z9EYBODjGLOITbDxm1WsuVbC17dq4ESLogVhLSs1I3Kjfb+oESRTAh6X5tsRpxVWkvpiqk9pkMOQPLq1t1QDAKagm6BtEJ2lkMWD9a0G+Z8d7Fc6BE3TqqTf+DxVsX04ArxA9znLgOtJZxgIbSFhCPGU2PXueiWLcOzLL6u2Bp6FmPcGYOkM3K8BD45+9CjYqv+/SIv7ckJW8KI1CaNOIyrvLGv8VyQ18dAB9DRScB6kIAyInAStwQbvGbU6E+fKSJcdoqGuZIxMgBObo4KIN98pVckMsacXXuEk7BYc9lsdQkB9WhJWfJbmDoXF7Ur4pno/3rGSVD8RC96sCO7mrjKnlbACu4ybvVJvxSq6F4DRG6vpamh03AiiMHaQZG4kOC1CuOA26UG+k0kE9ErlkKa1IcfF/l0G+6UN2Ahx8UNXSu3WJR7IVj6jwVDWKnJnPwKcYjHq7Gn3UnIt+h/j1qN2KuYPZujnuaB/RCHNt0VmHylpmOeQPU4aWHq/KZHj3eSpecSXV9G7Xb9BjbK+cNft+vnmJBqQTyKJG1cWwty38bjJnAwsS249KdBWBowzZmeZoLPvdZaPrLBEfb2+p/ty2aMqKFj66ev/aQBSMkiOnIaVjFzl7UtCutm0FEAo="
2018-02-04 11:17:01 +01:00
file : WiiUPluginLoader_$versiontag.zip
2018-02-04 11:03:56 +01:00
on :
repo : Maschell/WiiUPluginSystem
tags : false
all_branches : true