]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/commitdiff
Remove unused gitlab ci env variables
authorChocobozzz <me@florianbigard.com>
Mon, 24 Aug 2020 14:35:01 +0000 (16:35 +0200)
committerChocobozzz <chocobozzz@cpy.re>
Mon, 24 Aug 2020 16:54:37 +0000 (18:54 +0200)
scripts/clean/server/test.sh
shared/extra-utils/miscs/miscs.ts
shared/extra-utils/miscs/sql.ts

index dbd399aaa5172a89981ca606e885dade2a3133bc..f85daf810b162161370eca0fb6dd485ef621a3cd 100755 (executable)
@@ -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
index caf09c01fdd41d23611ab402df8634c0c81cb0d3..6a73f461e2716bcc9afa5f54c7eb371c50ccb0e8 100644 (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)
   }
 
index 5bd5d5d8a96120b3e89f3e9336b961bac6fe1de7..e68812e1b4363df75b55e1d37021b26f8a638684 100644 (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, {