diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2020-01-22 16:42:38 -0500 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2020-01-22 16:42:38 -0500 |
| commit | 0445b4f82ef447e072d9ab2887b9e62e7c648778 (patch) | |
| tree | 9564894fe208b94be3ba893c8b8638a334f1bff8 /.travis.yml | |
| parent | dd7d1e677199b840c54b52a78e4511c8b644cd67 (diff) | |
| download | erable-godot-0445b4f82ef447e072d9ab2887b9e62e7c648778.tar.gz erable-godot-0445b4f82ef447e072d9ab2887b9e62e7c648778.tar.bz2 erable-godot-0445b4f82ef447e072d9ab2887b9e62e7c648778.zip | |
reverted script
Diffstat (limited to '.travis.yml')
| -rw-r--r-- | .travis.yml | 40 |
1 files changed, 12 insertions, 28 deletions
diff --git a/.travis.yml b/.travis.yml index ee45ede..aafbbd1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,21 +1,21 @@ language: cpp -os: - - linux -# - osx sudo: require dist: trusty -#osx_image: xcode10.2 before_install: - - export STAGE=before_install - - ./scripts/travis.sh + - sudo apt-get install libtag1-dev qt5-qmake libqt5x11extras5-dev qt5-default qttools5-dev-tools libqt5svg5-dev qtmultimedia5-dev libgtk2.0-dev script: - - export STAGE=script - - ./scripts/travis.sh - + - qmake + - make -j$(nproc) + - make install 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 + - "./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: - - export STAGE=after_success - - ./scripts/travis.sh + - 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 AleePlayer*.AppImage* - wget https://raw.githubusercontent.com/k3rn31p4nic/travis-ci-discord-webhook/master/send.sh - chmod +x send.sh - ./send.sh success $WEBHOOK_URL @@ -23,26 +23,10 @@ after_failure: - wget https://raw.githubusercontent.com/k3rn31p4nic/travis-ci-discord-webhook/master/send.sh - chmod +x send.sh - ./send.sh failure $WEBHOOK_URL - + compiler: - gcc dist: xenial - -#addons: -# homebrew: -# taps: -# - kde-mac/kde -# packages: -# - qt5 -# - gstreamer -# - gst-plugins-good -# - gst-plugins-bad -# - gst-plugins-ugly -# - cmake -# - libmusicbrainz -# - taglib -# - kf5-extra-cmake-modules -# update: true branches: except: |
