From: Pieter Lexis Date: Tue, 9 Apr 2019 13:20:52 +0000 (+0200) Subject: Add bind tests X-Git-Tag: rec-4.2.0-rc1~26^2~14 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b51a7f16ff0ad79e440a6c3386ff326a8b4ff416;p=pdns Add bind tests --- diff --git a/.circleci/config.yml b/.circleci/config.yml index 4571e7bb6..4f3eb876f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -353,6 +353,35 @@ jobs: - auth-regress: context: gsqlite3-nsec3-narrow + test-auth-regress-bind: + docker: + - image: debian:stretch + - image: circleci/mysql:5 # for the hybrid test + steps: + - auth-regress-setup + - run: + command: apt-get install -qq -y sqlite3 + - auth-regress: + context: bind-both + - auth-regress: + context: bind-dnssec-both + - auth-regress: + context: bind-dnssec-nsec3-both + - auth-regress: + context: bind-dnssec-nsec3-optout-both + - auth-regress: + context: bind-dnssec-nsec3-narrow + - run: + command: apt-get install -qq -y default-mysql-client + - run: + command: | + cat >> ~/.my.cnf \<<- __EOF__ + [client] + protocol=TCP + __EOF__ + - auth-regress: + context: bind-hybrid-nsec3 + test-auth-regress-gmysql: docker: - image: debian:stretch @@ -529,6 +558,9 @@ workflows: - test-auth-regress-gmysql: requires: - build-auth + - test-auth-regress-bind: + requires: + - build-auth - test-auth-regress-gsqlite3: requires: - build-auth