From 2dc31b59c03054b9863b999bbefaf030294f5e1d Mon Sep 17 00:00:00 2001 From: Janos SUTO Date: Sun, 25 Jun 2017 22:05:06 +0200 Subject: [PATCH] improving bitbucket pipeline Signed-off-by: Janos SUTO --- bitbucket-pipelines.yml | 22 ++++++++++++++++++++-- unit_tests/run.sh | 7 +++++-- 2 files changed, 25 insertions(+), 4 deletions(-) diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml index dcda4e7a..351bf6fc 100644 --- a/bitbucket-pipelines.yml +++ b/bitbucket-pipelines.yml @@ -3,10 +3,28 @@ # Only use spaces to indent your .yml configuration. # ----- # You can specify a custom docker image from Docker Hub as your build environment. -# image: docker-image:tag + +image: sutoj/builder:xenial +clone: + depth: 5 pipelines: default: - step: script: - - echo "Everything is awesome!" \ No newline at end of file + - echo "Everything is awesome!" + + branches: + epoll: + - step: + script: + - service mysql start + - ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --with-database=mariadb --enable-tcpwrappers + - make clean all install + - echo "create database piler character set 'utf8mb4'" | mysql + - echo "grant all privileges on piler.* to piler@localhost identified by 'piler123'" | mysql + - echo "flush privileges" | mysql + - mysql -u piler -ppiler123 piler < /usr/share/piler/db-mysql.sql + - cd unit_tests + - ./run.sh + diff --git a/unit_tests/run.sh b/unit_tests/run.sh index 79e09c54..df758050 100755 --- a/unit_tests/run.sh +++ b/unit_tests/run.sh @@ -1,9 +1,12 @@ #!/bin/bash +set -o errexit +set -o pipefail +set -o nounset +set -x + LD_LIBRARY_PATH=../src ./check_parser_utils LD_LIBRARY_PATH=../src ./check_parser LD_LIBRARY_PATH=../src ./check_rules LD_LIBRARY_PATH=../src ./check_digest LD_LIBRARY_PATH=../src ./check_mydomains - -