mirror of
https://github.com/friendica/friendica
synced 2024-11-19 20:23:40 +00:00
Merge remote-tracking branch 'upstream/develop' into api
This commit is contained in:
commit
413acdfbc9
1 changed files with 82 additions and 0 deletions
82
.drone.yml
82
.drone.yml
|
@ -103,6 +103,88 @@ steps:
|
||||||
- export CHANGED_FILES="$(git diff --name-status ${DRONE_COMMIT_BEFORE}..${DRONE_COMMIT_AFTER} | grep ^A | cut -f2)"
|
- export CHANGED_FILES="$(git diff --name-status ${DRONE_COMMIT_BEFORE}..${DRONE_COMMIT_AFTER} | grep ^A | cut -f2)"
|
||||||
- /check-php-cs.sh
|
- /check-php-cs.sh
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
- name: cache
|
||||||
|
host:
|
||||||
|
path: /tmp/drone-cache
|
||||||
|
---
|
||||||
|
kind: pipeline
|
||||||
|
type: docker
|
||||||
|
name: php7.4-database-check
|
||||||
|
|
||||||
|
depends_on:
|
||||||
|
- Integrity checks
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Restore cache
|
||||||
|
image: meltwater/drone-cache:dev
|
||||||
|
settings:
|
||||||
|
backend: "filesystem"
|
||||||
|
restore: true
|
||||||
|
cache_key: '{{ .Repo.Name }}_php74_{{ arch }}_{{ os }}'
|
||||||
|
archive_format: "gzip"
|
||||||
|
mount:
|
||||||
|
- '.composer'
|
||||||
|
volumes:
|
||||||
|
- name: cache
|
||||||
|
path: /tmp/cache
|
||||||
|
- name: Composer install
|
||||||
|
image: friendicaci/php7.4:php7.4.18
|
||||||
|
commands:
|
||||||
|
- export COMPOSER_HOME=.composer
|
||||||
|
- ./bin/composer.phar validate
|
||||||
|
- ./bin/composer.phar install --prefer-dist
|
||||||
|
- name: Rebuild cache
|
||||||
|
image: meltwater/drone-cache:dev
|
||||||
|
settings:
|
||||||
|
backend: "filesystem"
|
||||||
|
rebuild: true
|
||||||
|
cache_key: '{{ .Repo.Name }}_php74_{{ arch }}_{{ os }}'
|
||||||
|
archive_format: "gzip"
|
||||||
|
mount:
|
||||||
|
- '.composer'
|
||||||
|
volumes:
|
||||||
|
- name: cache
|
||||||
|
path: /tmp/cache
|
||||||
|
- name: Recreate database.sql
|
||||||
|
image: friendicaci/php7.4:php7.4.18
|
||||||
|
environment:
|
||||||
|
MYSQL_HOST: "mariadb"
|
||||||
|
MYSQL_PORT: 3306
|
||||||
|
MYSQL_DATABASE: "test"
|
||||||
|
MYSQL_PASSWORD: "test"
|
||||||
|
MYSQL_USER: "test"
|
||||||
|
REDIS_HOST: "redis"
|
||||||
|
MEMCACHED_HOST: "memcached"
|
||||||
|
MEMCACHE_HOST: "memcached"
|
||||||
|
XDEBUG_MODE: "coverage"
|
||||||
|
commands:
|
||||||
|
- phpenmod xdebug
|
||||||
|
- cp config/local-sample.config.php config/local.config.php
|
||||||
|
- if ! bin/wait-for-connection $MYSQL_HOST $MYSQL_PORT 300; then echo "[ERROR] Waited 300 seconds, no response" >&2; exit 1; fi
|
||||||
|
- mysql -h$MYSQL_HOST -P$MYSQL_PORT -p$MYSQL_PASSWORD -u$MYSQL_USER $MYSQL_DATABASE < database.sql
|
||||||
|
- php ./bin/console.php dbstructure dumpsql > database.sql
|
||||||
|
- name: Check database.sql
|
||||||
|
image: alpine/git
|
||||||
|
commands:
|
||||||
|
- git update-index --refresh
|
||||||
|
- git diff-index --quiet HEAD --
|
||||||
|
- if [[ $? -ne 0 ]]; then
|
||||||
|
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:
|
volumes:
|
||||||
- name: cache
|
- name: cache
|
||||||
host:
|
host:
|
||||||
|
|
Loading…
Reference in a new issue