1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-05 19:42:24 +02:00

Add gitlab ci support

This commit is contained in:
Chocobozzz 2019-07-29 11:59:29 +02:00
parent 112be80ebd
commit 2284f20207
No known key found for this signature in database
GPG key ID: 583A612D890159BE
36 changed files with 247 additions and 64 deletions

View file

@ -5,7 +5,7 @@ set -eu
recreateDB () {
dbname="peertube_test$1"
dropdb --if-exists "$dbname"
dropdb --if-exists "$dbname" 2>&1
createdb -O peertube "$dbname"
psql -c "CREATE EXTENSION pg_trgm;" "$dbname" &
@ -18,10 +18,15 @@ removeFiles () {
dropRedis () {
port=$((9000+$1))
host="localhost"
redis-cli KEYS "bull-localhost:$port*" | grep -v empty | xargs --no-run-if-empty redis-cli DEL
redis-cli KEYS "redis-localhost:$port*" | grep -v empty | xargs --no-run-if-empty redis-cli DEL
redis-cli KEYS "*redis-localhost:$port-" | grep -v empty | xargs --no-run-if-empty redis-cli DEL
if [ ! -z ${GITLAB_CI+x} ]; then
host="redis"
fi
redis-cli -h "$host" KEYS "bull-localhost:$port*" | grep -v empty | xargs --no-run-if-empty redis-cli -h "$host" DEL
redis-cli -h "$host" KEYS "redis-localhost:$port*" | grep -v empty | xargs --no-run-if-empty redis-cli -h "$host" DEL
redis-cli -h "$host" KEYS "*redis-localhost:$port-" | grep -v empty | xargs --no-run-if-empty redis-cli -h "$host" DEL
}
seq=$(seq 1 6)