Removed caching in .travis.yml to avoid error

This commit is contained in:
0xFEEDC0DE64
2017-12-24 20:52:11 +01:00
parent faa7778685
commit e04ef5cf1a
2 changed files with 10 additions and 20 deletions

View File

@@ -1,22 +1,20 @@
language: cpp language: cpp
os: os: linux
- linux
dist: trusty dist: trusty
compiler: compiler: gcc
- gcc
cache:
directories:
- qt5
before_script: before_script:
- if [ ! -d qt5 ] ; then source make_qt.sh ; fi - git clone --branch=5.10 git://code.qt.io/qt/qt5.git
- pushd qt5
- perl init-repository --module-subset=qtbase,qtimageformats
- ./configure -opensource -nomake examples -nomake tests -confirm-license
- make -j2
- sudo make install
- popd
script: script:
- which qmake
- which lrelease
- mkdir -p build - mkdir -p build
- pushd build - pushd build
- qmake .. -config release - ../qt5/qtbase/bin/qmake .. -config release
- make -j2 - make -j2
- popd - popd

View File

@@ -1,8 +0,0 @@
#!/bin/bash0
git clone --branch=5.10 git://code.qt.io/qt/qt5.git
pushd qt5
perl init-repository --module-subset=qtbase,qtimageformats
./configure -static -opensource -nomake examples -nomake tests -confirm-license
make -j2
sudo make install
popd