From 5ba42c57beae1136906db2738dc536732fc69f6a Mon Sep 17 00:00:00 2001 From: Pieter Lexis Date: Tue, 9 Apr 2019 14:26:05 +0200 Subject: [PATCH] Add mysql tests --- .circleci/config.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) 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: -- 2.47.2