1
0
Fork 0

Remove unused gitlab ci env variables

This commit is contained in:
Chocobozzz 2020-08-24 16:35:01 +02:00 committed by Chocobozzz
parent a293ac71d8
commit ee90f1bc19
3 changed files with 1 additions and 7 deletions

View File

@ -20,10 +20,6 @@ dropRedis () {
port=$((9000+$1))
host="localhost"
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

View File

@ -67,8 +67,6 @@ function buildAbsoluteFixturePath (path: string, customCIPath = false) {
if (isAbsolute(path)) return path
if (customCIPath) {
if (process.env.GITLAB_CI) return join(root(), 'cached-fixtures', path)
return join(process.env.HOME, 'fixtures', path)
}

View File

@ -9,7 +9,7 @@ function getSequelize (internalServerNumber: number) {
const dbname = 'peertube_test' + internalServerNumber
const username = 'peertube'
const password = 'peertube'
const host = process.env.GITLAB_CI ? 'postgres' : 'localhost'
const host = 'localhost'
const port = 5432
const seq = new Sequelize(dbname, username, password, {