mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-04 05:51:27 +12:00
Add libnsl.so.1 to the AppImage, print resulting upload url
This commit is contained in:
parent
586c0ea1d0
commit
2487a03648
2 changed files with 3 additions and 2 deletions
|
@ -32,4 +32,4 @@ ninja
|
||||||
|
|
||||||
cd ..
|
cd ..
|
||||||
# If it compiled succesfully let's deploy
|
# If it compiled succesfully let's deploy
|
||||||
if [ $? -eq 0 ] && [ -n "$UPLOAD_URL" ] && [ "$TRAVIS_BRANCH" = "master" ] && [ "$TRAVIS_PULL_REQUEST" = false ]; then /bin/bash -ex .travis/deploy-linux.bash ; fi
|
if [ $? -eq 0 ] && [ -n "$UPLOAD_URL" ] && [ "$TRAVIS_BRANCH" = "master" ] && [ "$TRAVIS_PULL_REQUEST" = false ]; then /bin/bash -ex .travis/deploy-linux.bash ; fi
|
||||||
|
|
|
@ -10,6 +10,7 @@ if [ "$DEPLOY_APPIMAGE" = "true" ]; then
|
||||||
ls ./appdir/usr/lib/
|
ls ./appdir/usr/lib/
|
||||||
rm -r ./appdir/usr/share/doc
|
rm -r ./appdir/usr/share/doc
|
||||||
rm ./appdir/usr/lib/libxcb*
|
rm ./appdir/usr/lib/libxcb*
|
||||||
|
cp $(readlink -f /lib/x86_64-linux-gnu/libnsl.so.1) ./appdir/usr/lib/libnsl.so.1
|
||||||
export PATH=/rpcs3/build/squashfs-root/usr/bin/:${PATH}
|
export PATH=/rpcs3/build/squashfs-root/usr/bin/:${PATH}
|
||||||
|
|
||||||
# Embed newer libstdc++ for distros that don't come with it (ubuntu 14.04, 16.04)
|
# Embed newer libstdc++ for distros that don't come with it (ubuntu 14.04, 16.04)
|
||||||
|
@ -25,7 +26,7 @@ if [ "$DEPLOY_APPIMAGE" = "true" ]; then
|
||||||
ls
|
ls
|
||||||
COMM_TAG="$(git describe --tags $(git rev-list --tags --max-count=1))"
|
COMM_TAG="$(git describe --tags $(git rev-list --tags --max-count=1))"
|
||||||
COMM_COUNT="$(git rev-list --count HEAD)"
|
COMM_COUNT="$(git rev-list --count HEAD)"
|
||||||
curl "${UPLOAD_URL}${TRAVIS_COMMIT:0:8}&t=${COMM_TAG}&a=${COMM_COUNT}" --upload-file ./RPCS3*.AppImage
|
echo $(curl "${UPLOAD_URL}${TRAVIS_COMMIT:0:8}&t=${COMM_TAG}&a=${COMM_COUNT}" --upload-file ./RPCS3*.AppImage)
|
||||||
fi
|
fi
|
||||||
if [ "$DEPLOY_PPA" = "true" ]; then
|
if [ "$DEPLOY_PPA" = "true" ]; then
|
||||||
export DEBFULLNAME="RPCS3 Build Bot"
|
export DEBFULLNAME="RPCS3 Build Bot"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue