Skip to content

Commit

Permalink
travis/linux: use --no-verbose on all wget commands
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
erikboto authored and amtriathlon committed Oct 4, 2021
1 parent 4f30e98 commit 8330664
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions travis/linux/after_success.sh
Expand Up @@ -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
Expand All @@ -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

Expand Down
6 changes: 3 additions & 3 deletions travis/linux/before_install.sh
Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion travis/linux/deploy.sh
Expand Up @@ -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
Expand Down

0 comments on commit 8330664

Please sign in to comment.