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:
parent
112be80ebd
commit
2284f20207
36 changed files with 247 additions and 64 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue