mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2024-11-24 09:40:28 -06:00
Remove unused gitlab ci env variables
This commit is contained in:
parent
a293ac71d8
commit
ee90f1bc19
@ -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
|
||||
|
@ -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)
|
||||
}
|
||||
|
||||
|
@ -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, {
|
||||
|
Loading…
Reference in New Issue
Block a user