mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-02-25 18:55:32 -06:00
Remove unused gitlab ci env variables
This commit is contained in:
@@ -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, {
|
||||
|
||||
Reference in New Issue
Block a user