summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames E. Blair <jim@acmegating.com>2023-04-13 13:38:13 +0000
committerJames E. Blair <jim@acmegating.com>2023-04-13 13:38:13 +0000
commitd6c0afb74038e330708133edb98ee66b65e30193 (patch)
treee3fe9a80d3419619ccde88638628da06824a953a
parent1c188ad440e82bb356832497c387aace71653dc8 (diff)
downloadzuul-d6c0afb74038e330708133edb98ee66b65e30193.tar.gz
Revert "Test with MariaDB instead of MySQL"
This reverts commit 1c188ad440e82bb356832497c387aace71653dc8. Reason for revert: This change increases test failures; investigation is ongoing. Change-Id: I3a101656ee0904e1cf6c856dba845385c333260f
-rw-r--r--bindep.txt4
-rw-r--r--tools/docker-compose.yaml6
-rwxr-xr-xtools/test-setup-docker.sh2
3 files changed, 6 insertions, 6 deletions
diff --git a/bindep.txt b/bindep.txt
index 04cf0c797..2e9c5e696 100644
--- a/bindep.txt
+++ b/bindep.txt
@@ -1,9 +1,9 @@
# This is a cross-platform list tracking distribution packages needed by tests;
# see http://docs.openstack.org/infra/bindep/ for additional information.
-mariadb-client [test !platform:rpm]
-mariadb-server [test]
+mysql-client [test !platform:rpm]
mysql [test platform:rpm]
+mysql-server [test]
postgresql [test]
libjpeg-dev [test !platform:rpm]
libjpeg-turbo-devel [test platform:rpm]
diff --git a/tools/docker-compose.yaml b/tools/docker-compose.yaml
index 743be6988..05b4905e2 100644
--- a/tools/docker-compose.yaml
+++ b/tools/docker-compose.yaml
@@ -1,9 +1,9 @@
version: "3"
services:
- mariadb:
- container_name: zuul-test-mariadb
- image: mariadb:10.6
+ mysql:
+ container_name: zuul-test-mysql
+ image: mysql:8.0
environment:
- MYSQL_ROOT_PASSWORD=insecure_worker
ports:
diff --git a/tools/test-setup-docker.sh b/tools/test-setup-docker.sh
index 6000230bb..1601b11a7 100755
--- a/tools/test-setup-docker.sh
+++ b/tools/test-setup-docker.sh
@@ -38,7 +38,7 @@ else
fi
-MYSQL="${DOCKER} exec zuul-test-mariadb mysql -u root -pinsecure_worker"
+MYSQL="${DOCKER} exec zuul-test-mysql mysql -u root -pinsecure_worker"
if [ "${COMPOSE}" == "docker-compose" ]; then
${ROOTCMD} docker-compose rm -sf