|
|
@ -5,12 +5,13 @@ aliases: |
|
|
|
docker: |
|
|
|
docker: |
|
|
|
- image: circleci/ruby:2.7-buster-node |
|
|
|
- image: circleci/ruby:2.7-buster-node |
|
|
|
environment: &ruby_environment |
|
|
|
environment: &ruby_environment |
|
|
|
|
|
|
|
BUNDLE_JOBS: 3 |
|
|
|
|
|
|
|
BUNDLE_RETRY: 3 |
|
|
|
BUNDLE_APP_CONFIG: ./.bundle/ |
|
|
|
BUNDLE_APP_CONFIG: ./.bundle/ |
|
|
|
BUNDLE_PATH: ./vendor/bundle/ |
|
|
|
BUNDLE_PATH: ./vendor/bundle/ |
|
|
|
DB_HOST: localhost |
|
|
|
DB_HOST: localhost |
|
|
|
DB_USER: root |
|
|
|
DB_USER: root |
|
|
|
RAILS_ENV: test |
|
|
|
RAILS_ENV: test |
|
|
|
PARALLEL_TEST_PROCESSORS: 4 |
|
|
|
|
|
|
|
ALLOW_NOPAM: true |
|
|
|
ALLOW_NOPAM: true |
|
|
|
CONTINUOUS_INTEGRATION: true |
|
|
|
CONTINUOUS_INTEGRATION: true |
|
|
|
DISABLE_SIMPLECOV: true |
|
|
|
DISABLE_SIMPLECOV: true |
|
|
@ -44,7 +45,9 @@ aliases: |
|
|
|
keys: |
|
|
|
keys: |
|
|
|
- v1-node-dependencies-{{ checksum "yarn.lock" }} |
|
|
|
- v1-node-dependencies-{{ checksum "yarn.lock" }} |
|
|
|
- v1-node-dependencies- |
|
|
|
- v1-node-dependencies- |
|
|
|
- run: yarn install --frozen-lockfile |
|
|
|
- run: |
|
|
|
|
|
|
|
name: Install yarn dependencies |
|
|
|
|
|
|
|
command: yarn install --frozen-lockfile |
|
|
|
- save_cache: |
|
|
|
- save_cache: |
|
|
|
key: v1-node-dependencies-{{ checksum "yarn.lock" }} |
|
|
|
key: v1-node-dependencies-{{ checksum "yarn.lock" }} |
|
|
|
paths: |
|
|
|
paths: |
|
|
@ -68,14 +71,21 @@ aliases: |
|
|
|
steps: |
|
|
|
steps: |
|
|
|
- *attach_workspace |
|
|
|
- *attach_workspace |
|
|
|
- *install_system_dependencies |
|
|
|
- *install_system_dependencies |
|
|
|
- run: ruby -e 'puts RUBY_VERSION' | tee /tmp/.ruby-version |
|
|
|
- run: |
|
|
|
|
|
|
|
name: Set Ruby version |
|
|
|
|
|
|
|
command: ruby -e 'puts RUBY_VERSION' | tee /tmp/.ruby-version |
|
|
|
- *restore_ruby_dependencies |
|
|
|
- *restore_ruby_dependencies |
|
|
|
- run: bundle config set clean 'true' |
|
|
|
- run: |
|
|
|
- run: bundle config set deployment 'true' |
|
|
|
name: Set bundler settings |
|
|
|
- run: bundle config set with 'pam_authentication' |
|
|
|
command: | |
|
|
|
- run: bundle config set without 'development production' |
|
|
|
bundle config clean 'true' |
|
|
|
- run: bundle config set frozen 'true' |
|
|
|
bundle config deployment 'true' |
|
|
|
- run: bundle install --jobs 16 --retry 3 && bundle clean |
|
|
|
bundle config with 'pam_authentication' |
|
|
|
|
|
|
|
bundle config without 'development production' |
|
|
|
|
|
|
|
bundle config frozen 'true' |
|
|
|
|
|
|
|
- run: |
|
|
|
|
|
|
|
name: Install bundler dependencies |
|
|
|
|
|
|
|
command: bundle check || (bundle install && bundle clean) |
|
|
|
- save_cache: |
|
|
|
- save_cache: |
|
|
|
key: v2-ruby-dependencies-{{ checksum "/tmp/.ruby-version" }}-{{ checksum "Gemfile.lock" }} |
|
|
|
key: v2-ruby-dependencies-{{ checksum "/tmp/.ruby-version" }}-{{ checksum "Gemfile.lock" }} |
|
|
|
paths: |
|
|
|
paths: |
|
|
@ -88,17 +98,26 @@ aliases: |
|
|
|
- ./mastodon/vendor/bundle/ |
|
|
|
- ./mastodon/vendor/bundle/ |
|
|
|
|
|
|
|
|
|
|
|
- &test_steps |
|
|
|
- &test_steps |
|
|
|
|
|
|
|
parallelism: 4 |
|
|
|
steps: |
|
|
|
steps: |
|
|
|
- *attach_workspace |
|
|
|
- *attach_workspace |
|
|
|
- *install_system_dependencies |
|
|
|
- *install_system_dependencies |
|
|
|
- run: sudo apt-get install -y ffmpeg |
|
|
|
|
|
|
|
- run: |
|
|
|
- run: |
|
|
|
name: Prepare Tests |
|
|
|
name: Install FFMPEG |
|
|
|
command: ./bin/rails parallel:create parallel:load_schema parallel:prepare |
|
|
|
command: sudo apt-get install -y ffmpeg |
|
|
|
- run: |
|
|
|
- run: |
|
|
|
name: Run Tests |
|
|
|
name: Load database schema |
|
|
|
command: ./bin/retry bundle exec parallel_test ./spec/ --group-by filesize --type rspec |
|
|
|
command: ./bin/rails db:create db:schema:load db:seed |
|
|
|
|
|
|
|
- run: |
|
|
|
|
|
|
|
name: Run rspec in parallel |
|
|
|
|
|
|
|
command: | |
|
|
|
|
|
|
|
bundle exec rspec --profile 10 \ |
|
|
|
|
|
|
|
--format RspecJunitFormatter \ |
|
|
|
|
|
|
|
--out test_results/rspec.xml \ |
|
|
|
|
|
|
|
--format progress \ |
|
|
|
|
|
|
|
$(circleci tests glob "spec/**/*_spec.rb" | circleci tests split --split-by=timings) |
|
|
|
|
|
|
|
- store_test_results: |
|
|
|
|
|
|
|
path: test_results |
|
|
|
jobs: |
|
|
|
jobs: |
|
|
|
install: |
|
|
|
install: |
|
|
|
<<: *defaults |
|
|
|
<<: *defaults |
|
|
@ -115,19 +134,14 @@ jobs: |
|
|
|
environment: *ruby_environment |
|
|
|
environment: *ruby_environment |
|
|
|
<<: *install_ruby_dependencies |
|
|
|
<<: *install_ruby_dependencies |
|
|
|
|
|
|
|
|
|
|
|
install-ruby2.5: |
|
|
|
|
|
|
|
<<: *defaults |
|
|
|
|
|
|
|
docker: |
|
|
|
|
|
|
|
- image: circleci/ruby:2.5-buster-node |
|
|
|
|
|
|
|
environment: *ruby_environment |
|
|
|
|
|
|
|
<<: *install_ruby_dependencies |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
build: |
|
|
|
build: |
|
|
|
<<: *defaults |
|
|
|
<<: *defaults |
|
|
|
steps: |
|
|
|
steps: |
|
|
|
- *attach_workspace |
|
|
|
- *attach_workspace |
|
|
|
- *install_system_dependencies |
|
|
|
- *install_system_dependencies |
|
|
|
- run: ./bin/rails assets:precompile |
|
|
|
- run: |
|
|
|
|
|
|
|
name: Precompile assets |
|
|
|
|
|
|
|
command: ./bin/rails assets:precompile |
|
|
|
- persist_to_workspace: |
|
|
|
- persist_to_workspace: |
|
|
|
root: ~/projects/ |
|
|
|
root: ~/projects/ |
|
|
|
paths: |
|
|
|
paths: |
|
|
@ -149,10 +163,10 @@ jobs: |
|
|
|
- *install_system_dependencies |
|
|
|
- *install_system_dependencies |
|
|
|
- run: |
|
|
|
- run: |
|
|
|
name: Create database |
|
|
|
name: Create database |
|
|
|
command: ./bin/rails parallel:create |
|
|
|
command: ./bin/rails db:create |
|
|
|
- run: |
|
|
|
- run: |
|
|
|
name: Run migrations |
|
|
|
name: Run migrations |
|
|
|
command: ./bin/rails parallel:migrate |
|
|
|
command: ./bin/rails db:migrate |
|
|
|
|
|
|
|
|
|
|
|
test-ruby2.7: |
|
|
|
test-ruby2.7: |
|
|
|
<<: *defaults |
|
|
|
<<: *defaults |
|
|
@ -178,35 +192,33 @@ jobs: |
|
|
|
- image: circleci/redis:5-alpine |
|
|
|
- image: circleci/redis:5-alpine |
|
|
|
<<: *test_steps |
|
|
|
<<: *test_steps |
|
|
|
|
|
|
|
|
|
|
|
test-ruby2.5: |
|
|
|
|
|
|
|
<<: *defaults |
|
|
|
|
|
|
|
docker: |
|
|
|
|
|
|
|
- image: circleci/ruby:2.5-buster-node |
|
|
|
|
|
|
|
environment: *ruby_environment |
|
|
|
|
|
|
|
- image: circleci/postgres:12.2 |
|
|
|
|
|
|
|
environment: |
|
|
|
|
|
|
|
POSTGRES_USER: root |
|
|
|
|
|
|
|
POSTGRES_HOST_AUTH_METHOD: trust |
|
|
|
|
|
|
|
- image: circleci/redis:5-alpine |
|
|
|
|
|
|
|
<<: *test_steps |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
test-webui: |
|
|
|
test-webui: |
|
|
|
<<: *defaults |
|
|
|
<<: *defaults |
|
|
|
docker: |
|
|
|
docker: |
|
|
|
- image: circleci/node:12-buster |
|
|
|
- image: circleci/node:12-buster |
|
|
|
steps: |
|
|
|
steps: |
|
|
|
- *attach_workspace |
|
|
|
- *attach_workspace |
|
|
|
- run: ./bin/retry yarn test:jest |
|
|
|
- run: |
|
|
|
|
|
|
|
name: Run jest |
|
|
|
|
|
|
|
command: yarn test:jest |
|
|
|
|
|
|
|
|
|
|
|
check-i18n: |
|
|
|
check-i18n: |
|
|
|
<<: *defaults |
|
|
|
<<: *defaults |
|
|
|
steps: |
|
|
|
steps: |
|
|
|
- *attach_workspace |
|
|
|
- *attach_workspace |
|
|
|
- *install_system_dependencies |
|
|
|
- *install_system_dependencies |
|
|
|
- run: bundle exec i18n-tasks check-normalized |
|
|
|
- run: |
|
|
|
- run: bundle exec i18n-tasks unused -l en |
|
|
|
name: Check locale file normalization |
|
|
|
- run: bundle exec i18n-tasks check-consistent-interpolations |
|
|
|
command: bundle exec i18n-tasks check-normalized |
|
|
|
- run: bundle exec rake repo:check_locales_files |
|
|
|
- run: |
|
|
|
|
|
|
|
name: Check for unused strings |
|
|
|
|
|
|
|
command: bundle exec i18n-tasks unused -l en |
|
|
|
|
|
|
|
- run: |
|
|
|
|
|
|
|
name: Check for wrong string interpolations |
|
|
|
|
|
|
|
command: bundle exec i18n-tasks check-consistent-interpolations |
|
|
|
|
|
|
|
- run: |
|
|
|
|
|
|
|
name: Check that all required locale files exist |
|
|
|
|
|
|
|
command: bundle exec rake repo:check_locales_files |
|
|
|
|
|
|
|
|
|
|
|
workflows: |
|
|
|
workflows: |
|
|
|
version: 2 |
|
|
|
version: 2 |
|
|
@ -220,10 +232,6 @@ workflows: |
|
|
|
requires: |
|
|
|
requires: |
|
|
|
- install |
|
|
|
- install |
|
|
|
- install-ruby2.7 |
|
|
|
- install-ruby2.7 |
|
|
|
- install-ruby2.5: |
|
|
|
|
|
|
|
requires: |
|
|
|
|
|
|
|
- install |
|
|
|
|
|
|
|
- install-ruby2.7 |
|
|
|
|
|
|
|
- build: |
|
|
|
- build: |
|
|
|
requires: |
|
|
|
requires: |
|
|
|
- install-ruby2.7 |
|
|
|
- install-ruby2.7 |
|
|
@ -238,10 +246,6 @@ workflows: |
|
|
|
requires: |
|
|
|
requires: |
|
|
|
- install-ruby2.6 |
|
|
|
- install-ruby2.6 |
|
|
|
- build |
|
|
|
- build |
|
|
|
- test-ruby2.5: |
|
|
|
|
|
|
|
requires: |
|
|
|
|
|
|
|
- install-ruby2.5 |
|
|
|
|
|
|
|
- build |
|
|
|
|
|
|
|
- test-webui: |
|
|
|
- test-webui: |
|
|
|
requires: |
|
|
|
requires: |
|
|
|
- install |
|
|
|
- install |
|
|
|