diff options
author | Chocobozzz <me@florianbigard.com> | 2021-05-05 10:50:20 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-05-05 10:51:32 +0200 |
commit | a0e69167ae43ffbe088b2e9e436bf2624a4a1b4e (patch) | |
tree | 81f0e61560b4991e16141a4dc7359dbb99f12750 /scripts | |
parent | 36d9a79f7be85406489491670bda5284fa897d02 (diff) | |
download | PeerTube-a0e69167ae43ffbe088b2e9e436bf2624a4a1b4e.tar.gz PeerTube-a0e69167ae43ffbe088b2e9e436bf2624a4a1b4e.tar.zst PeerTube-a0e69167ae43ffbe088b2e9e436bf2624a4a1b4e.zip |
Remove scripty
It breaks our tests with the latest npm release
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/clean/client/index.sh (renamed from scripts/clean/client/dist.sh) | 0 | ||||
-rwxr-xr-x | scripts/clean/server/dist.sh | 5 | ||||
-rw-r--r-- | scripts/danger/clean/cleaner.ts | 34 | ||||
-rwxr-xr-x | scripts/danger/clean/dev.sh | 10 | ||||
-rwxr-xr-x | scripts/danger/clean/modules.sh | 9 | ||||
-rwxr-xr-x | scripts/danger/clean/prod.sh | 10 | ||||
-rwxr-xr-x | scripts/help.sh | 5 | ||||
-rwxr-xr-x | scripts/play.sh | 15 |
8 files changed, 0 insertions, 88 deletions
diff --git a/scripts/clean/client/dist.sh b/scripts/clean/client/index.sh index 19b89de77..19b89de77 100755 --- a/scripts/clean/client/dist.sh +++ b/scripts/clean/client/index.sh | |||
diff --git a/scripts/clean/server/dist.sh b/scripts/clean/server/dist.sh deleted file mode 100755 index 50722cb44..000000000 --- a/scripts/clean/server/dist.sh +++ /dev/null | |||
@@ -1,5 +0,0 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | set -eu | ||
4 | |||
5 | rm -rf dist/ | ||
diff --git a/scripts/danger/clean/cleaner.ts b/scripts/danger/clean/cleaner.ts deleted file mode 100644 index 69e8a63a0..000000000 --- a/scripts/danger/clean/cleaner.ts +++ /dev/null | |||
@@ -1,34 +0,0 @@ | |||
1 | import { registerTSPaths } from '../../../server/helpers/register-ts-paths' | ||
2 | registerTSPaths() | ||
3 | |||
4 | import * as Promise from 'bluebird' | ||
5 | import * as rimraf from 'rimraf' | ||
6 | import { initDatabaseModels, sequelizeTypescript } from '../../../server/initializers/database' | ||
7 | import { CONFIG } from '../../../server/initializers/config' | ||
8 | |||
9 | initDatabaseModels(true) | ||
10 | .then(() => { | ||
11 | return sequelizeTypescript.drop() | ||
12 | }) | ||
13 | .then(() => { | ||
14 | console.info('Tables of %s deleted.', CONFIG.DATABASE.DBNAME) | ||
15 | |||
16 | const STORAGE = CONFIG.STORAGE | ||
17 | return Promise.mapSeries(Object.keys(STORAGE), storage => { | ||
18 | const storageDir = STORAGE[storage] | ||
19 | |||
20 | return new Promise((res, rej) => { | ||
21 | rimraf(storageDir, err => { | ||
22 | if (err) return rej(err) | ||
23 | |||
24 | console.info('%s deleted.', storageDir) | ||
25 | return res() | ||
26 | }) | ||
27 | }) | ||
28 | }) | ||
29 | .then(() => process.exit(0)) | ||
30 | }) | ||
31 | .catch(err => { | ||
32 | console.error(err) | ||
33 | process.exit(-1) | ||
34 | }) | ||
diff --git a/scripts/danger/clean/dev.sh b/scripts/danger/clean/dev.sh deleted file mode 100755 index 14b45e13b..000000000 --- a/scripts/danger/clean/dev.sh +++ /dev/null | |||
@@ -1,10 +0,0 @@ | |||
1 | #!/bin/bash | ||
2 | |||
3 | set -eu | ||
4 | |||
5 | read -p "This will remove all directories and SQL tables. Are you sure? (y/*) " -n 1 -r | ||
6 | echo | ||
7 | |||
8 | if [[ "$REPLY" =~ ^[Yy]$ ]]; then | ||
9 | NODE_ENV=test npm run ts-node -- --type-check "scripts/danger/clean/cleaner" | ||
10 | fi | ||
diff --git a/scripts/danger/clean/modules.sh b/scripts/danger/clean/modules.sh deleted file mode 100755 index f59d6b675..000000000 --- a/scripts/danger/clean/modules.sh +++ /dev/null | |||
@@ -1,9 +0,0 @@ | |||
1 | #!/bin/bash | ||
2 | |||
3 | set -eu | ||
4 | |||
5 | read -p "This will remove all node server and client modules. Are you sure? " -n 1 -r | ||
6 | |||
7 | if [[ "$REPLY" =~ ^[Yy]$ ]]; then | ||
8 | rm -rf node_modules client/node_modules | ||
9 | fi | ||
diff --git a/scripts/danger/clean/prod.sh b/scripts/danger/clean/prod.sh deleted file mode 100755 index 0675600c4..000000000 --- a/scripts/danger/clean/prod.sh +++ /dev/null | |||
@@ -1,10 +0,0 @@ | |||
1 | #!/bin/bash | ||
2 | |||
3 | set -eu | ||
4 | |||
5 | read -p "This will remove all directories and SQL tables. Are you sure? (y/*) " -n 1 -r | ||
6 | echo | ||
7 | |||
8 | if [[ "$REPLY" =~ ^[Yy]$ ]]; then | ||
9 | NODE_ENV=production npm run ts-node -- --type-check "./scripts/danger/clean/cleaner" | ||
10 | fi | ||
diff --git a/scripts/help.sh b/scripts/help.sh index bc38bdb40..da127092d 100755 --- a/scripts/help.sh +++ b/scripts/help.sh | |||
@@ -9,11 +9,6 @@ printf " build:server -> Build the server for production\n" | |||
9 | printf " build:client -> Build the client for production\n" | 9 | printf " build:client -> Build the client for production\n" |
10 | printf " clean:client -> Clean the client build files (dist directory)\n" | 10 | printf " clean:client -> Clean the client build files (dist directory)\n" |
11 | printf " clean:server:test -> Clean logs, uploads, database... of the test instances\n" | 11 | printf " clean:server:test -> Clean logs, uploads, database... of the test instances\n" |
12 | printf " watch:client -> Watch and compile on the fly the client files\n" | ||
13 | printf " danger:clean:dev -> /!\ Clean certificates, logs, uploads, thumbnails, torrents and database specified in the development environment\n" | ||
14 | printf " danger:clean:prod -> /!\ Clean certificates, logs, uploads, thumbnails, torrents and database specified by the production environment\n" | ||
15 | printf " danger:clean:modules -> /!\ Clean node and typescript modules\n" | ||
16 | printf " play -> Run 3 fresh nodes so that you can test the communication between them\n" | ||
17 | printf " reset-password -- -u [user] -> Reset the password of user [user]\n" | 12 | printf " reset-password -- -u [user] -> Reset the password of user [user]\n" |
18 | printf " create-transcoding-job -- -v [video UUID] \n" | 13 | printf " create-transcoding-job -- -v [video UUID] \n" |
19 | printf " -> Create a transcoding job for a particular video\n" | 14 | printf " -> Create a transcoding job for a particular video\n" |
diff --git a/scripts/play.sh b/scripts/play.sh deleted file mode 100755 index 69725da93..000000000 --- a/scripts/play.sh +++ /dev/null | |||
@@ -1,15 +0,0 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | set -eu | ||
4 | |||
5 | if [ ! -f "dist/server.js" ]; then | ||
6 | echo "Missing server file (server.js)." | ||
7 | exit -1 | ||
8 | fi | ||
9 | |||
10 | max=${1:-3} | ||
11 | |||
12 | for i in $(seq 1 "$max"); do | ||
13 | NODE_ENV=test NODE_APP_INSTANCE=$i node dist/server.js & | ||
14 | sleep 1 | ||
15 | done | ||