mirror of
https://github.com/Maschell/libutils.git
synced 2024-11-06 05:05:08 +01:00
Fix travis script.
This commit is contained in:
parent
534388dae5
commit
7708da46c6
10
.travis.yml
10
.travis.yml
@ -25,25 +25,19 @@ before_install:
|
|||||||
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo dpkg -i /tmp/devkitpro-pacman.deb;
|
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo dpkg -i /tmp/devkitpro-pacman.deb;
|
||||||
fi
|
fi
|
||||||
- yes | sudo dkp-pacman -Syu devkitPPC --needed
|
- yes | sudo dkp-pacman -Syu devkitPPC --needed
|
||||||
- wget $(curl -s https://api.github.com/repos/decaf-emu/wut/releases/latest | grep
|
- wget https://github.com/decaf-emu/wut/releases/download/1.0.0-beta6/wut.linux64.7z
|
||||||
'browser_' | grep 'linux' | cut -d\" -f4)
|
|
||||||
install:
|
install:
|
||||||
- 7z x -y $(ls | grep "linux") -o${WUT_ROOT}
|
- 7z x -y $(ls | grep "linux") -o${WUT_ROOT}
|
||||||
before_script:
|
before_script:
|
||||||
- cd $TRAVIS_BUILD_DIR/
|
- cd $TRAVIS_BUILD_DIR/
|
||||||
script:
|
script:
|
||||||
- mkdir build && cd build
|
- mkdir build && cd build
|
||||||
- cmake -DCMAKE_TOOLCHAIN_FILE=$WUT_ROOT/share/wut.toolchain.cmake -DCMAKE_INSTALL_PREFIX=$WUT_ROOT
|
- cmake -DCMAKE_TOOLCHAIN_FILE=$WUT_ROOT/share/wut.toolchain.cmake -DCMAKE_INSTALL_PREFIX=$TRAVIS_BUILD_DIR/deploy
|
||||||
../
|
../
|
||||||
- make
|
- make
|
||||||
before_deploy:
|
before_deploy:
|
||||||
- cd $TRAVIS_BUILD_DIR/
|
- cd $TRAVIS_BUILD_DIR/
|
||||||
- commit="$(git rev-parse --short=7 HEAD)"
|
- commit="$(git rev-parse --short=7 HEAD)"
|
||||||
- mkdir -p deploy
|
|
||||||
- mkdir -p deploy/lib
|
|
||||||
- mkdir -p deploy/include
|
|
||||||
- cp build/libutilswut.a deploy/lib
|
|
||||||
- cp -r include/* deploy/include
|
|
||||||
- cd deploy
|
- cd deploy
|
||||||
- zip -r libutilswut_$commit.zip .
|
- zip -r libutilswut_$commit.zip .
|
||||||
- cd ..
|
- cd ..
|
||||||
|
Loading…
Reference in New Issue
Block a user