summaryrefslogtreecommitdiffstats
path: root/.circleci
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2020-05-01 20:19:01 +0200
committerGitHub <noreply@github.com>2020-05-01 20:19:01 +0200
commit60408fa3ef5b4aae4c46ff9c308d49ba67179bc7 (patch)
tree68b28a25747c26ee497f66f0aa05469c874f157f /.circleci
parent3511528e508aa365e7f88b7e3b6a3b8f99c531cc (diff)
Change CircleCI test output (#13587)
Diffstat (limited to '.circleci')
-rw-r--r--.circleci/config.yml106
1 files changed, 55 insertions, 51 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index dd943e32795..03c4bcbc52c 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -5,12 +5,13 @@ aliases:
docker:
- image: circleci/ruby:2.7-buster-node
environment: &ruby_environment
+ BUNDLE_JOBS: 3
+ BUNDLE_RETRY: 3
BUNDLE_APP_CONFIG: ./.bundle/
BUNDLE_PATH: ./vendor/bundle/
DB_HOST: localhost
DB_USER: root
RAILS_ENV: test
- PARALLEL_TEST_PROCESSORS: 4
ALLOW_NOPAM: true
CONTINUOUS_INTEGRATION: true
DISABLE_SIMPLECOV: true
@@ -44,7 +45,9 @@ aliases:
keys:
- v1-node-dependencies-{{ checksum "yarn.lock" }}
- v1-node-dependencies-
- - run: yarn install --frozen-lockfile
+ - run:
+ name: Install yarn dependencies
+ command: yarn install --frozen-lockfile
- save_cache:
key: v1-node-dependencies-{{ checksum "yarn.lock" }}
paths:
@@ -57,7 +60,7 @@ aliases:
command: |
sudo apt-get update
sudo apt-get install -y libicu-dev libidn11-dev libprotobuf-dev protobuf-compiler
-
+
## TODO: FIX THESE BUSTER DEPENDANCES
sudo wget http://ftp.au.debian.org/debian/pool/main/i/icu/libicu57_57.1-6+deb9u3_amd64.deb
sudo dpkg -i libicu57_57.1-6+deb9u3_amd64.deb
@@ -68,14 +71,21 @@ aliases:
steps:
- *attach_workspace
- *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
- - run: bundle config set clean 'true'
- - run: bundle config set deployment 'true'
- - run: bundle config set with 'pam_authentication'
- - run: bundle config set without 'development production'
- - run: bundle config set frozen 'true'
- - run: bundle install --jobs 16 --retry 3 && bundle clean
+ - run:
+ name: Set bundler settings
+ command: |
+ bundle config clean 'true'
+ bundle config deployment 'true'
+ 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:
key: v2-ruby-dependencies-{{ checksum "/tmp/.ruby-version" }}-{{ checksum "Gemfile.lock" }}
paths:
@@ -88,17 +98,26 @@ aliases:
- ./mastodon/vendor/bundle/
- &test_steps
+ parallelism: 4
steps:
- *attach_workspace
- *install_system_dependencies
- - run: sudo apt-get install -y ffmpeg
- run:
- name: Prepare Tests
- command: ./bin/rails parallel:create parallel:load_schema parallel:prepare
+ name: Install FFMPEG
+ command: sudo apt-get install -y ffmpeg
- run:
- name: Run Tests
- command: ./bin/retry bundle exec parallel_test ./spec/ --group-by filesize --type rspec
-
+ name: Load database schema
+ 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:
install:
<<: *defaults
@@ -115,19 +134,14 @@ jobs:
environment: *ruby_environment
<<: *install_ruby_dependencies
- install-ruby2.5:
- <<: *defaults
- docker:
- - image: circleci/ruby:2.5-buster-node
- environment: *ruby_environment
- <<: *install_ruby_dependencies
-
build:
<<: *defaults
steps:
- *attach_workspace
- *install_system_dependencies
- - run: ./bin/rails assets:precompile
+ - run:
+ name: Precompile assets
+ command: ./bin/rails assets:precompile
- persist_to_workspace:
root: ~/projects/
paths:
@@ -149,10 +163,10 @@ jobs:
- *install_system_dependencies
- run:
name: Create database
- command: ./bin/rails parallel:create
+ command: ./bin/rails db:create
- run:
name: Run migrations
- command: ./bin/rails parallel:migrate
+ command: ./bin/rails db:migrate
test-ruby2.7:
<<: *defaults
@@ -178,35 +192,33 @@ jobs:
- image: circleci/redis:5-alpine
<<: *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:
<<: *defaults
docker:
- image: circleci/node:12-buster
steps:
- *attach_workspace
- - run: ./bin/retry yarn test:jest
+ - run:
+ name: Run jest
+ command: yarn test:jest
check-i18n:
<<: *defaults
steps:
- *attach_workspace
- *install_system_dependencies
- - run: bundle exec i18n-tasks check-normalized
- - run: bundle exec i18n-tasks unused -l en
- - run: bundle exec i18n-tasks check-consistent-interpolations
- - run: bundle exec rake repo:check_locales_files
+ - run:
+ name: Check locale file normalization
+ command: bundle exec i18n-tasks check-normalized
+ - 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:
version: 2
@@ -220,10 +232,6 @@ workflows:
requires:
- install
- install-ruby2.7
- - install-ruby2.5:
- requires:
- - install
- - install-ruby2.7
- build:
requires:
- install-ruby2.7
@@ -238,10 +246,6 @@ workflows:
requires:
- install-ruby2.6
- build
- - test-ruby2.5:
- requires:
- - install-ruby2.5
- - build
- test-webui:
requires:
- install