2016-07-25 12:50:22 +02:00
|
|
|
image: gcc
|
2016-07-25 11:26:35 +02:00
|
|
|
pipelines:
|
|
|
|
default:
|
|
|
|
- step:
|
|
|
|
script:
|
|
|
|
- echo "This script runs on all branches that don't have any specific pipeline assigned in 'branches'."
|
|
|
|
branches:
|
|
|
|
develop:
|
|
|
|
- step:
|
|
|
|
script:
|
2016-07-25 12:07:28 +02:00
|
|
|
- cat /etc/*-release
|
2016-07-25 11:26:35 +02:00
|
|
|
- uname -a
|
|
|
|
- grep -i processor /proc/cpuinfo | wc -l
|
|
|
|
- gcc --version
|
2016-07-25 12:50:22 +02:00
|
|
|
- apt-get update # required to install qt
|
|
|
|
- apt-get install -y qtbase5-dev libqt5svg5-dev qt5-default qttools5-dev-tools libqt5xmlpatterns5-dev libqt5core5a libqt5gui5 libqt5printsupport5 libqt5svg5 libqt5widgets5 libqt5xml5 libqt5xmlpatterns5 xpdf
|
2016-07-25 13:35:41 +02:00
|
|
|
# QTestLib require GUI support for some tests
|
|
|
|
- "export DISPLAY=:99.0"
|
|
|
|
- "sh -e /etc/init.d/xvfb start"
|
2016-07-25 11:26:35 +02:00
|
|
|
- mkdir build
|
|
|
|
- cd build
|
|
|
|
- qmake --version
|
|
|
|
- qmake ../Valentina.pro -r CONFIG+=noDebugSymbols CONFIG+=no_ccache CONFIG+=checkWarnings
|
2016-07-25 13:31:38 +02:00
|
|
|
- make -j$(nproc)
|
2016-07-25 13:15:24 +02:00
|
|
|
- export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:"/opt/atlassian/bitbucketci/agent/build/build/src/libs/vpropertyexplorer/bin:/opt/atlassian/bitbucketci/agent/build/build/src/libs/qmuparser/bin"
|
2016-07-25 13:34:36 +02:00
|
|
|
- DISPLAY=:99.0 make check
|