diff options
author | Chocobozzz <me@florianbigard.com> | 2020-05-14 13:47:03 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2020-05-14 13:47:03 +0200 |
commit | 2f398c19fd2ccd43a9de4478dfda0ecd7ad4c088 (patch) | |
tree | d314020f4a6d5be3786e731dbed3d365b264eeb1 /support/doc/development | |
parent | 7d47ff906dc80926231a85935646e1eb157b7127 (diff) | |
download | PeerTube-2f398c19fd2ccd43a9de4478dfda0ecd7ad4c088.tar.gz PeerTube-2f398c19fd2ccd43a9de4478dfda0ecd7ad4c088.tar.zst PeerTube-2f398c19fd2ccd43a9de4478dfda0ecd7ad4c088.zip |
Update FAQ
Diffstat (limited to 'support/doc/development')
-rw-r--r-- | support/doc/development/release.md | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/support/doc/development/release.md b/support/doc/development/release.md index f8d041cfe..88b434efa 100644 --- a/support/doc/development/release.md +++ b/support/doc/development/release.md | |||
@@ -3,11 +3,13 @@ | |||
3 | * Fix remaining important bugs | 3 | * Fix remaining important bugs |
4 | * Update [/CHANGELOG.md](/CHANGELOG.md) | 4 | * Update [/CHANGELOG.md](/CHANGELOG.md) |
5 | * Check migrations: | 5 | * Check migrations: |
6 | * `npm run clean:server:test` | 6 | ``` |
7 | * `git checkout master && rm -r ./node_modules && yarn install --pure-lockfile && npm run build:server` | 7 | npm run clean:server:test |
8 | * `NODE_APP_INSTANCE=6 NODE_ENV=test npm run start` and quit after initialization | 8 | git checkout master && rm -r ./node_modules && yarn install --pure-lockfile && npm run build:server |
9 | * `git checkout develop && rm -r ./node_modules && yarn install --pure-lockfile && npm run build:server` | 9 | NODE_APP_INSTANCE=6 NODE_ENV=test npm run start |
10 | * `NODE_APP_INSTANCE=6 NODE_ENV=test npm run start` and check migrations do not fail | 10 | git checkout develop && rm -r ./node_modules && yarn install --pure-lockfile && npm run build:server |
11 | NODE_APP_INSTANCE=6 NODE_ENV=test npm run start | ||
12 | ``` | ||
11 | * Run `rm -r node_modules && rm -r client/node_modules && yarn install --pure-lockfile && npm run build` to see if all the supported languages compile correctly | 13 | * Run `rm -r node_modules && rm -r client/node_modules && yarn install --pure-lockfile && npm run build` to see if all the supported languages compile correctly |
12 | * Update https://peertube2.cpy.re and check it works correctly | 14 | * Update https://peertube2.cpy.re and check it works correctly |
13 | * Check CI tests are green | 15 | * Check CI tests are green |