19 lines
562 B
YAML
19 lines
562 B
YAML
|
image: gcc
|
||
|
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:
|
||
|
- 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
|
||
|
- make
|
||
|
- make check
|