You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.3 KiB
34 lines
1.3 KiB
language: cpp
|
|
sudo: required
|
|
dist: trusty
|
|
|
|
os: linux
|
|
|
|
before_install:
|
|
- sudo add-apt-repository --yes ppa:beineri/opt-qt57-trusty
|
|
- sudo apt-get update -qq
|
|
- wget https://nixos.org/releases/patchelf/patchelf-0.9/patchelf-0.9.tar.bz2
|
|
- tar xf patchelf-0.9.tar.bz2
|
|
- cd patchelf-*/
|
|
- ./configure
|
|
- make -j7
|
|
- sudo make install
|
|
- cd -
|
|
- sudo wget -c "https://github.com/probonopd/AppImageKit/releases/download/6/AppImageAssistant_6-x86_64.AppImage" -O /usr/local/bin/AppImageAssistant
|
|
- sudo chmod a+x /usr/local/bin/AppImageAssistant
|
|
|
|
install:
|
|
- sudo apt-get -y install qt57base binutils
|
|
|
|
script:
|
|
- source /opt/qt57/bin/qt57-env.sh
|
|
- /opt/qt57/bin/qmake linuxdeployqt.pro
|
|
- make -j7
|
|
- mkdir -p linuxdeployqt.AppDir/usr/bin/
|
|
- cp /usr/local/bin/patchelf linuxdeployqt.AppDir/usr/bin/
|
|
- cp /usr/local/bin/AppImageAssistant linuxdeployqt.AppDir/usr/bin/
|
|
- # cp $(which qmlimportscanner) linuxdeployqt.AppDir/ # use the one from the Qt to be bundled instead
|
|
- cp ./linuxdeployqt/linuxdeployqt linuxdeployqt.AppDir/linuxdeployqt
|
|
- ./linuxdeployqt/linuxdeployqt linuxdeployqt.AppDir/linuxdeployqt -verbose=3 -appimage
|
|
- mv linuxdeployqt.AppDir.AppImage linuxdeployqt.AppImage
|
|
- curl --upload-file ./linuxdeployqt.AppImage https://transfer.sh/linuxdeployqt.appimage
|
|
|