mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-02-13 16:18:42 +00:00
travis/linux: use --no-verbose on all wget commands
Use --no-verbose in order to avoid having a lot of wget progress information in the travis logs, since the logs seems to be sometimes becoming larger than 4 MB which results in aborted jobs.
This commit is contained in:
committed by
Alejandro Martinez
parent
4f30e98e50
commit
8330664467
@@ -46,7 +46,7 @@ chmod a+x linuxdeployqt-7-x86_64.AppImage
|
||||
./linuxdeployqt-7-x86_64.AppImage appdir/GoldenCheetah -verbose=2 -bundle-non-qt-libs -exclude-libs=libqsqlmysql,libqsqlpsql,libnss3,libnssutil3,libxcb-dri3.so.0 -unsupported-allow-new-glibc
|
||||
|
||||
# Add Python and core modules
|
||||
wget https://github.com/niess/python-appimage/releases/download/python3.7/python3.7.12-cp37-cp37m-manylinux1_x86_64.AppImage
|
||||
wget --no-verbose https://github.com/niess/python-appimage/releases/download/python3.7/python3.7.12-cp37-cp37m-manylinux1_x86_64.AppImage
|
||||
chmod +x python3.7.12-cp37-cp37m-manylinux1_x86_64.AppImage
|
||||
./python3.7.12-cp37-cp37m-manylinux1_x86_64.AppImage --appimage-extract
|
||||
rm -f python3.7.12-cp37-cp37m-manylinux1_x86_64.AppImage
|
||||
@@ -58,7 +58,7 @@ mv squashfs-root/opt appdir/opt
|
||||
rm -rf squashfs-root
|
||||
|
||||
# Generate AppImage
|
||||
wget "https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage"
|
||||
wget --no-verbose "https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage"
|
||||
chmod a+x appimagetool-x86_64.AppImage
|
||||
./appimagetool-x86_64.AppImage appdir
|
||||
|
||||
|
||||
@@ -28,12 +28,12 @@ R --version
|
||||
|
||||
# D2XX - refresh cache if folder is empty
|
||||
if [ -z "$(ls -A D2XX)" ]; then
|
||||
wget http://www.ftdichip.com/Drivers/D2XX/Linux/libftd2xx-x86_64-1.3.6.tgz
|
||||
wget --no-verbose http://www.ftdichip.com/Drivers/D2XX/Linux/libftd2xx-x86_64-1.3.6.tgz
|
||||
tar xf libftd2xx-x86_64-1.3.6.tgz -C D2XX
|
||||
fi
|
||||
|
||||
# SRMIO
|
||||
wget https://github.com/rclasen/srmio/archive/v0.1.1git1.tar.gz
|
||||
wget --no-verbose https://github.com/rclasen/srmio/archive/v0.1.1git1.tar.gz
|
||||
tar xf v0.1.1git1.tar.gz
|
||||
cd srmio-0.1.1git1
|
||||
sh genautomake.sh
|
||||
@@ -50,7 +50,7 @@ sudo add-apt-repository -y ppa:deadsnakes/ppa
|
||||
sudo apt-get update -qq
|
||||
sudo apt-get install -qq python3.7-dev
|
||||
python3.7 --version
|
||||
wget https://sourceforge.net/projects/pyqt/files/sip/sip-4.19.8/sip-4.19.8.tar.gz
|
||||
wget --no-verbose https://sourceforge.net/projects/pyqt/files/sip/sip-4.19.8/sip-4.19.8.tar.gz
|
||||
tar xf sip-4.19.8.tar.gz
|
||||
cd sip-4.19.8
|
||||
python3.7 configure.py
|
||||
|
||||
@@ -29,7 +29,7 @@ cp /usr/lib/x86_64-linux-gnu/libssl.so appdir/lib
|
||||
cp /usr/lib/x86_64-linux-gnu/libcrypto.so appdir/lib
|
||||
|
||||
### Download current version of linuxdeployqt
|
||||
wget -c https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage
|
||||
wget --no-verbose -c https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage
|
||||
chmod a+x linuxdeployqt-continuous-x86_64.AppImage
|
||||
|
||||
### Deploy to appdir and generate AppImage
|
||||
|
||||
Reference in New Issue
Block a user