-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reverted the .travis.yml to take out the changes for AppImage build (…
…Issue #46)
- Loading branch information
Showing
1 changed file
with
0 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,12 @@ | ||
sudo: required | ||
language: generic | ||
dist: trusty | ||
|
||
before_install: | ||
- sudo add-apt-repository ppa:beineri/opt-qt593-trusty -y | ||
- sudo apt-get update -qq | ||
|
||
install: | ||
- sudo apt-get -y install qt59base | ||
- source /opt/qt*/bin/qt*-env.sh | ||
|
||
services: | ||
- docker | ||
|
||
script: | ||
- wget -O- https://raw.githubusercontent.com/harisvsulaiman/element-build/master/script.sh | sh - | ||
- make INSTALL_ROOT=appdir -j$(nproc) install ; find appdir/ | ||
- wget -c -nv "https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage" | ||
- chmod a+x linuxdeployqt-continuous-x86_64.AppImage | ||
- unset QTDIR; unset QT_PLUGIN_PATH ; unset LD_LIBRARY_PATH | ||
- export VERSION=$(git rev-parse --short HEAD) # linuxdeployqt uses this for naming the file | ||
- ./linuxdeployqt-continuous-x86_64.AppImage appdir/usr/share/applications/*.desktop -bundle-non-qt-libs | ||
- ./linuxdeployqt-continuous-x86_64.AppImage appdir/usr/share/applications/*.desktop -appimage | ||
|
||
after_success: | ||
- find appdir -executable -type f -exec ldd {} \; | grep " => /usr" | cut -d " " -f 2-3 | sort | uniq | ||
- wget -c https://github.com/probonopd/uploadtool/raw/master/upload.sh | ||
- bash upload.sh Bookworm*.AppImage* | ||
|
||
branches: | ||
except: | ||
- /^debian\/\d/ | ||
- # Do not build tags that we create when we upload to GitHub Releases | ||
- /^(?i:continuous)/ |