Continuous integration #52

Merged
0xFEEDC0DE64 merged 10 commits from continuous-integration into devel 2017-12-26 16:40:54 +01:00
2 changed files with 12 additions and 13 deletions
Showing only changes of commit faa7778685 - Show all commits

View File

@@ -5,21 +5,12 @@ dist: trusty
compiler:
- gcc
before_install:
install:
cache:
directories:
- qt5
before_script:
- if [ ! -d qt5 ]
- then
- 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
- fi
- if [ ! -d qt5 ] ; then source make_qt.sh ; fi
script:
- which qmake

8
make_qt.sh Normal file
View File

@@ -0,0 +1,8 @@
#!/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