[Travis] No caching of the portlib folder, fixed the cd command.

This commit is contained in:
Maschell 2018-03-04 17:24:54 +01:00
parent c5b4a8b1c0
commit 7597d898cc

View File

@ -21,7 +21,6 @@ before_cache:
- rm -rf $DEVKITPRO/*.7z
- rm -rf $DEVKITPRO/*.bz2
- rm -rf $DEVKITPRO/examples
- rm -rf $DEVKITPRO/portlibs
addons:
apt:
@ -43,13 +42,13 @@ install:
- perl devkitARMupdate.pl
- cd $PORTLIBREPOS
- ((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 && make install)
- (git clone https://github.com/dimok789/libiosuhax.git || (cd libiosuhax && git pull)) && (cd dynamic_libs && make -j8 && make install)
- (git clone https://github.com/aliaspider/libfat.git || (cd libfat && git pull)) && (cd dynamic_libs &&make wiiu-release && make wiiu-install)
- (git clone https://github.com/Maschell/libntfs-wiiu.git || (cd libntfs && git pull)) && (cd dynamic_libs && make wiiu-install)
- (git clone https://github.com/Maschell/libutils.git || (cd libutils && git pull)) && (cd dynamic_libs && make -j8 && make install)
- ((git clone https://github.com/Maschell/libgui.git && (7z x -y ./libgui/libs/portlibs.zip -o${DEVKITPRO})) || (cd libgui && git pull)) && (cd dynamic_libs && make -j8 && make install)
- (git clone https://github.com/Maschell/fs_wrapper.git || (cd fs_wrapper && git pull)) && (cd dynamic_libs && make install)
- (git clone https://github.com/Maschell/controller_patcher.git || (cd controller_patcher && git pull)) && (cd dynamic_libs && make -j8 && make install)
- (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)
- (git clone https://github.com/Maschell/libntfs-wiiu.git || (cd libntfs && git pull)) && (cd libntfs-wiiu && make wiiu-install)
- (git clone https://github.com/Maschell/libutils.git || (cd libutils && git pull)) && (cd libutils && make -j8 && make install)
- ((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 && make install)
- (git clone https://github.com/Maschell/fs_wrapper.git || (cd fs_wrapper && git pull)) && (cd fs_wrapper && make install)
- (git clone https://github.com/Maschell/controller_patcher.git || (cd controller_patcher && git pull)) && (cd controller_patcher && make -j8 && make install)
script:
- cd $main_cwd