chore: update tests to use Mastodon v4

This commit is contained in:
Nolan Lawson 2022-11-24 08:18:56 -08:00
parent 53803db5be
commit a5b7e39ce8
3 changed files with 5 additions and 5 deletions

View File

@ -17,11 +17,11 @@ executors:
node:
working_directory: ~/pinafore
docker:
- image: cimg/ruby:3.0.3-browsers
- image: cimg/ruby:3.0.4-browsers
node_and_ruby:
working_directory: ~/pinafore
docker:
- image: cimg/ruby:3.0.3-browsers
- image: cimg/ruby:3.0.4-browsers
- image: circleci/postgres:12.2
environment:
POSTGRES_USER: pinafore

View File

@ -11,8 +11,8 @@ const writeFile = promisify(fs.writeFile)
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.5.3'
const GIT_URL = 'https://github.com/mastodon/mastodon.git'
const GIT_TAG = 'v4.0.2'
const mastodonDir = path.join(dir, '../mastodon')

View File

@ -18,7 +18,7 @@ DB_PASS=${DB_PASS}
BIND=0.0.0.0
`
export const RUBY_VERSION = '3.0.3'
export const RUBY_VERSION = '3.0.4'
const __dirname = path.dirname(new URL(import.meta.url).pathname)
export const mastodonDir = path.join(__dirname, '../mastodon')