From 707d2a805eb6e2641908331c34e37c35925dedd4 Mon Sep 17 00:00:00 2001 From: Roman Telezhynskyi Date: Mon, 25 Jul 2016 09:26:35 +0000 Subject: [PATCH] bitbucket-pipelines.yml created online with Bitbucket --HG-- branch : develop --- bitbucket-pipelines.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 bitbucket-pipelines.yml diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml new file mode 100644 index 000000000..e97035636 --- /dev/null +++ b/bitbucket-pipelines.yml @@ -0,0 +1,21 @@ +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: + - lsb_release -a + - uname -a + - grep -i processor /proc/cpuinfo | wc -l + - gcc --version + - mkdir build + - cd build + - which qmake + - qmake --version + - qmake ../Valentina.pro -r CONFIG+=noDebugSymbols CONFIG+=no_ccache CONFIG+=checkWarnings + - make + - make check \ No newline at end of file