Test with MariaDB instead of MySQL
I'm not sure if this is a good idea or not yet. Testing with MySQL actually exposed the alembic transaction thing that is fixed in a grandparent change. That said much of the world seems to be moving to MariaDB so it might be a good idea for us to test that more explicitly? We update bindep.txt which will install mariadb during CI job runs. We also update our local test setup tooling to roughly match what will be used in CI. For example the mariadb:10.6 docker image is chosen because this is roughly equivalent to what Jammy packages. Another good reason for this change is that Debian ARM64 does not package MySQL and only packages MariaDB. This should give us better compatibility for testing on architectures other than x86-64. Change-Id: I9d00557ca5823da34278c3e9ecda2daaf13440b7changes/26/872226/4
parent
b2dc863b44
commit
1c188ad440
|
@ -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.
|
||||
|
||||
mysql-client [test !platform:rpm]
|
||||
mariadb-client [test !platform:rpm]
|
||||
mariadb-server [test]
|
||||
mysql [test platform:rpm]
|
||||
mysql-server [test]
|
||||
postgresql [test]
|
||||
libjpeg-dev [test !platform:rpm]
|
||||
libjpeg-turbo-devel [test platform:rpm]
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
version: "3"
|
||||
|
||||
services:
|
||||
mysql:
|
||||
container_name: zuul-test-mysql
|
||||
image: mysql:8.0
|
||||
mariadb:
|
||||
container_name: zuul-test-mariadb
|
||||
image: mariadb:10.6
|
||||
environment:
|
||||
- MYSQL_ROOT_PASSWORD=insecure_worker
|
||||
ports:
|
||||
|
|
|
@ -38,7 +38,7 @@ else
|
|||
fi
|
||||
|
||||
|
||||
MYSQL="${DOCKER} exec zuul-test-mysql mysql -u root -pinsecure_worker"
|
||||
MYSQL="${DOCKER} exec zuul-test-mariadb mysql -u root -pinsecure_worker"
|
||||
|
||||
if [ "${COMPOSE}" == "docker-compose" ]; then
|
||||
${ROOTCMD} docker-compose rm -sf
|
||||
|
|
Loading…
Reference in New Issue