From b51a7f16ff0ad79e440a6c3386ff326a8b4ff416 Mon Sep 17 00:00:00 2001 From: Pieter Lexis Date: Tue, 9 Apr 2019 15:20:52 +0200 Subject: [PATCH] Add bind tests --- .circleci/config.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) 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 -- 2.40.0