Drone | check database.sql

pull/10963/head
Philipp 2021-11-07 23:38:04 +01:00
parent d3b0d4dbde
commit 5fa633eb39
No known key found for this signature in database
GPG Key ID: 24A7501396EB5432
1 changed files with 17 additions and 1 deletions

View File

@ -146,7 +146,7 @@ steps:
volumes:
- name: cache
path: /tmp/cache
- name: Test Friendica
- name: Recreate database.sql
image: friendicaci/php7.4:php7.4.18
environment:
MYSQL_HOST: "mariadb"
@ -183,6 +183,22 @@ steps:
echo "database.sql mismatch.";
exit 1;
fi
services:
- name: mariadb
image: mariadb:latest
environment:
MYSQL_ALLOW_EMPTY_PASSWORD: "true"
MYSQL_DATABASE: "test"
MYSQL_PASSWORD: "test"
MYSQL_USER: "test"
tmpfs:
- /var/lib/mysql
volumes:
- name: cache
host:
path: /tmp/drone-cache
---
kind: pipeline
type: docker