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
|
|
|
|
- mkdir build
|
|
|
|
- cd build
|
|
|
|
- qmake --version
|
|
|
|
- qmake ../Valentina.pro -r CONFIG+=noDebugSymbols CONFIG+=no_ccache CONFIG+=checkWarnings
|
2016-07-25 12:07:28 +02:00
|
|
|
- make -j4
|
2016-07-25 11:26:35 +02:00
|
|
|
- make check
|