valentina/bitbucket-pipelines.yml
Roman Telezhynskyi d4c1d348f9 Try to use default image.
--HG--
branch : develop
2016-07-25 10:07:28 +00:00

19 lines
588 B
YAML

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:
- cat /etc/*-release
- 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 -j4
- make check