aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/ci.sh
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2023-04-21 15:05:27 +0200
committerChocobozzz <chocobozzz@cpy.re>2023-05-09 08:57:34 +0200
commit1772b383de490cf406fe93ef3aa3a941f6db513c (patch)
tree7cecc404c8d71951c22079e9bf5180095981b7f9 /scripts/ci.sh
parent118626c8752bee7b05c4e0b668852e1aba2416f1 (diff)
downloadPeerTube-1772b383de490cf406fe93ef3aa3a941f6db513c.tar.gz
PeerTube-1772b383de490cf406fe93ef3aa3a941f6db513c.tar.zst
PeerTube-1772b383de490cf406fe93ef3aa3a941f6db513c.zip
Add peertube runner cli
Diffstat (limited to 'scripts/ci.sh')
-rwxr-xr-xscripts/ci.sh7
1 files changed, 5 insertions, 2 deletions
diff --git a/scripts/ci.sh b/scripts/ci.sh
index 8b984093c..7b2e5d347 100755
--- a/scripts/ci.sh
+++ b/scripts/ci.sh
@@ -104,14 +104,17 @@ elif [ "$1" = "api-5" ]; then
104 npm run build:server 104 npm run build:server
105 105
106 transcodingFiles=$(findTestFiles ./dist/server/tests/api/transcoding) 106 transcodingFiles=$(findTestFiles ./dist/server/tests/api/transcoding)
107 runnersFiles=$(findTestFiles ./dist/server/tests/api/runners)
107 108
108 MOCHA_PARALLEL=true runTest "$1" $((2*$speedFactor)) $transcodingFiles 109 MOCHA_PARALLEL=true runTest "$1" $((2*$speedFactor)) $transcodingFiles $runnersFiles
109elif [ "$1" = "external-plugins" ]; then 110elif [ "$1" = "external-plugins" ]; then
110 npm run build:server 111 npm run build:server
112 npm run build:peertube-runner
111 113
112 externalPluginsFiles=$(findTestFiles ./dist/server/tests/external-plugins) 114 externalPluginsFiles=$(findTestFiles ./dist/server/tests/external-plugins)
115 peertubeRunnerFiles=$(findTestFiles ./dist/server/tests/peertube-runner)
113 116
114 runTest "$1" 1 $externalPluginsFiles 117 runTest "$1" 1 $externalPluginsFiles $peertubeRunnerFiles
115elif [ "$1" = "lint" ]; then 118elif [ "$1" = "lint" ]; then
116 npm run eslint -- --ext .ts "./server/**/*.ts" "shared/**/*.ts" "scripts/**/*.ts" 119 npm run eslint -- --ext .ts "./server/**/*.ts" "shared/**/*.ts" "scripts/**/*.ts"
117 npm run swagger-cli -- validate support/doc/api/openapi.yaml 120 npm run swagger-cli -- validate support/doc/api/openapi.yaml