From: Pieter Lexis Date: Tue, 9 Apr 2019 12:26:05 +0000 (+0200) Subject: Add mysql tests X-Git-Tag: rec-4.2.0-rc1~26^2~16 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5ba42c57beae1136906db2738dc536732fc69f6a;p=thirdparty%2Fpdns.git Add mysql tests --- diff --git a/.circleci/config.yml b/.circleci/config.yml index a095b69839..f83d8a47f5 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -334,6 +334,31 @@ jobs: context: godbc_mssql-nsec3-narrow skip: 8bit-txt-unescaped + test-auth-regress-gmysql: + docker: + - image: debian:stretch + - image: circleci/mysql:5 + steps: + - auth-regress-setup + - run: + command: apt-get install -qq -y default-mysql-client + - run: + command: | + cat >> ~/.my.cnf \<<- __EOF__ + [client] + protocol=TCP + __EOF__ + - auth-regress: + context: gmysql-nodnssec-both + - auth-regress: + context: gmysql-both + - auth-regress: + context: gmysql-nsec3-both + - auth-regress: + context: gmysql-nsec3-optout-both + - auth-regress: + context: gmysql-nsec3-narrow + build-recursor: docker: - image: debian:stretch @@ -482,6 +507,9 @@ workflows: - test-auth-regress-odbc-mssql: requires: - build-auth + - test-auth-regress-gmysql: + requires: + - build-auth - build-recursor - test-recursor-regression: