Add gitlab ci support
This commit is contained in:
parent
112be80ebd
commit
2284f20207
36 changed files with 247 additions and 64 deletions
41
scripts/ci.sh
Executable file
41
scripts/ci.sh
Executable file
|
@ -0,0 +1,41 @@
|
|||
#!/bin/sh
|
||||
|
||||
set -eu
|
||||
|
||||
if [ $# -eq 0 ]; then
|
||||
echo "Need test suite argument."
|
||||
exit -1
|
||||
fi
|
||||
|
||||
killall -q peertube || true
|
||||
|
||||
if [ "$1" = "misc" ]; then
|
||||
npm run build -- --light-fr
|
||||
mocha --timeout 5000 --exit --require ts-node/register --bail server/tests/client.ts \
|
||||
server/tests/feeds/index.ts \
|
||||
server/tests/misc-endpoints.ts \
|
||||
server/tests/helpers/index.ts \
|
||||
server/tests/plugins/index.ts
|
||||
elif [ "$1" = "cli" ]; then
|
||||
npm run build:server
|
||||
CC=gcc-4.9 CXX=g++-4.9 npm run setup:cli
|
||||
mocha --timeout 5000 --exit --require ts-node/register --bail server/tests/cli/index.ts
|
||||
elif [ "$1" = "api-1" ]; then
|
||||
npm run build:server
|
||||
sh ./server/tests/api/ci-1.sh 2
|
||||
elif [ "$1" = "api-2" ]; then
|
||||
npm run build:server
|
||||
sh ./server/tests/api/ci-2.sh 2
|
||||
elif [ "$1" = "api-3" ]; then
|
||||
npm run build:server
|
||||
sh ./server/tests/api/ci-3.sh 2
|
||||
elif [ "$1" = "api-4" ]; then
|
||||
npm run build:server
|
||||
sh ./server/tests/api/ci-4.sh 2
|
||||
elif [ "$1" = "lint" ]; then
|
||||
npm run tslint -- --project ./tsconfig.json -c ./tslint.json server.ts "server/**/*.ts" "shared/**/*.ts"
|
||||
|
||||
( cd client
|
||||
npm run lint
|
||||
)
|
||||
fi
|
Loading…
Add table
Add a link
Reference in a new issue