chore: update to mastodon v3.5.1 (#2133)
* chore: update to mastodon v3.5.1 * chore: empty commit
This commit is contained in:
parent
8685e4f603
commit
6794514916
|
@ -17,11 +17,11 @@ executors:
|
|||
node:
|
||||
working_directory: ~/pinafore
|
||||
docker:
|
||||
- image: cimg/ruby:2.7.2-browsers
|
||||
- image: cimg/ruby:3.0.3-browsers
|
||||
node_and_ruby:
|
||||
working_directory: ~/pinafore
|
||||
docker:
|
||||
- image: cimg/ruby:2.7.2-browsers
|
||||
- image: cimg/ruby:3.0.3-browsers
|
||||
- image: circleci/postgres:12.2
|
||||
environment:
|
||||
POSTGRES_USER: pinafore
|
||||
|
|
|
@ -120,8 +120,8 @@ or
|
|||
|
||||
1. Run `rm -fr mastodon` to clear out all Mastodon data
|
||||
1. Comment out `await restoreMastodonData()` in `run-mastodon.js` to avoid actually populating the database with statuses/favorites/etc.
|
||||
2. Update the `GIT_TAG_OR_BRANCH` in `run-mastodon.js` to whatever you want
|
||||
3. If the Ruby version changed, install it and update `setup-mastodon-in.travis.sh`
|
||||
2. Update the `GIT_TAG_OR_BRANCH` in `clone-mastodon.js` to whatever you want
|
||||
3. If the Ruby version changed (check Mastodon's `.ruby-version`), install it and update `RUBY_VERSION` in `mastodon-config.js` as well as the Ruby version in `.circleci/config.yml`.
|
||||
4. Run `yarn run-mastodon`
|
||||
5. Run `yarn backup-mastodon-data` to overwrite the data in `fixtures/`
|
||||
6. Uncomment `await restoreMastodonData()` in `run-mastodon.js`
|
||||
|
|
|
@ -12,7 +12,7 @@ const __dirname = path.dirname(new URL(import.meta.url).pathname)
|
|||
const dir = __dirname
|
||||
|
||||
const GIT_URL = 'https://github.com/tootsuite/mastodon.git'
|
||||
const GIT_TAG = 'v3.4.1'
|
||||
const GIT_TAG = 'v3.5.1'
|
||||
|
||||
const mastodonDir = path.join(dir, '../mastodon')
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@ DB_NAME=${DB_NAME}
|
|||
DB_PASS=${DB_PASS}
|
||||
`
|
||||
|
||||
export const RUBY_VERSION = '2.7.2'
|
||||
export const RUBY_VERSION = '3.0.3'
|
||||
|
||||
const __dirname = path.dirname(new URL(import.meta.url).pathname)
|
||||
export const mastodonDir = path.join(__dirname, '../mastodon')
|
||||
|
|
Loading…
Reference in New Issue