2021-10-18 06:05:25 -04:00
|
|
|
version: 2.1
|
2018-04-20 07:46:08 -04:00
|
|
|
|
2021-10-18 06:05:25 -04:00
|
|
|
orbs:
|
|
|
|
ruby: circleci/ruby@1.2.0
|
|
|
|
node: circleci/node@4.7.0
|
|
|
|
|
|
|
|
executors:
|
|
|
|
default:
|
|
|
|
parameters:
|
|
|
|
ruby-version:
|
|
|
|
type: string
|
2018-04-20 07:46:08 -04:00
|
|
|
docker:
|
2021-10-18 06:05:25 -04:00
|
|
|
- image: cimg/ruby:<< parameters.ruby-version >>
|
|
|
|
environment:
|
2020-05-01 14:19:01 -04:00
|
|
|
BUNDLE_JOBS: 3
|
|
|
|
BUNDLE_RETRY: 3
|
2021-10-18 06:05:25 -04:00
|
|
|
CONTINUOUS_INTEGRATION: true
|
2018-04-20 07:46:08 -04:00
|
|
|
DB_HOST: localhost
|
|
|
|
DB_USER: root
|
2018-05-09 10:59:58 -04:00
|
|
|
DISABLE_SIMPLECOV: true
|
2021-10-18 06:05:25 -04:00
|
|
|
RAILS_ENV: test
|
2021-11-06 12:13:51 -04:00
|
|
|
- image: cimg/postgres:14.0
|
2021-10-18 06:05:25 -04:00
|
|
|
environment:
|
|
|
|
POSTGRES_USER: root
|
|
|
|
POSTGRES_HOST_AUTH_METHOD: trust
|
2021-11-18 15:59:57 -05:00
|
|
|
- image: circleci/redis:6-alpine
|
2018-04-23 03:16:26 -04:00
|
|
|
|
2021-10-18 06:05:25 -04:00
|
|
|
commands:
|
|
|
|
install-system-dependencies:
|
2018-04-20 07:46:08 -04:00
|
|
|
steps:
|
2020-05-01 14:19:01 -04:00
|
|
|
- run:
|
2021-10-18 06:05:25 -04:00
|
|
|
name: Install system dependencies
|
|
|
|
command: |
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get install -y libicu-dev libidn11-dev libprotobuf-dev protobuf-compiler
|
|
|
|
install-ruby-dependencies:
|
|
|
|
parameters:
|
|
|
|
ruby-version:
|
|
|
|
type: string
|
|
|
|
steps:
|
|
|
|
- run:
|
|
|
|
command: |
|
|
|
|
bundle config clean 'true'
|
|
|
|
bundle config frozen 'true'
|
|
|
|
bundle config without 'development production'
|
|
|
|
name: Set bundler settings
|
|
|
|
- ruby/install-deps:
|
2021-11-18 15:59:57 -05:00
|
|
|
bundler-version: '2.2.31'
|
2021-10-18 06:05:25 -04:00
|
|
|
key: ruby<< parameters.ruby-version >>-gems-v1
|
|
|
|
wait-db:
|
|
|
|
steps:
|
|
|
|
- run:
|
|
|
|
command: dockerize -wait tcp://localhost:5432 -wait tcp://localhost:6379 -timeout 1m
|
|
|
|
name: Wait for PostgreSQL and Redis
|
2018-04-20 07:46:08 -04:00
|
|
|
|
|
|
|
jobs:
|
2018-04-23 03:16:26 -04:00
|
|
|
build:
|
2021-10-18 06:05:25 -04:00
|
|
|
docker:
|
2021-11-18 15:59:57 -05:00
|
|
|
- image: cimg/ruby:3.0-node
|
2021-10-18 06:05:25 -04:00
|
|
|
environment:
|
|
|
|
RAILS_ENV: test
|
2018-04-23 03:16:26 -04:00
|
|
|
steps:
|
2021-10-18 06:05:25 -04:00
|
|
|
- checkout
|
|
|
|
- install-system-dependencies
|
|
|
|
- install-ruby-dependencies:
|
2021-11-18 15:59:57 -05:00
|
|
|
ruby-version: '3.0'
|
2021-10-18 06:05:25 -04:00
|
|
|
- node/install-packages:
|
|
|
|
cache-version: v1
|
|
|
|
pkg-manager: yarn
|
2020-05-01 14:19:01 -04:00
|
|
|
- run:
|
|
|
|
command: ./bin/rails assets:precompile
|
2021-10-18 06:05:25 -04:00
|
|
|
name: Precompile assets
|
2018-07-30 16:22:55 -04:00
|
|
|
- persist_to_workspace:
|
2018-04-23 03:16:26 -04:00
|
|
|
paths:
|
2021-10-18 06:05:25 -04:00
|
|
|
- public/assets
|
|
|
|
- public/packs-test
|
|
|
|
root: .
|
|
|
|
|
|
|
|
test:
|
|
|
|
parameters:
|
|
|
|
ruby-version:
|
|
|
|
type: string
|
|
|
|
executor:
|
|
|
|
name: default
|
|
|
|
ruby-version: << parameters.ruby-version >>
|
|
|
|
environment:
|
|
|
|
ALLOW_NOPAM: true
|
|
|
|
PAM_ENABLED: true
|
|
|
|
PAM_DEFAULT_SERVICE: pam_test
|
|
|
|
PAM_CONTROLLED_SERVICE: pam_test_controlled
|
|
|
|
parallelism: 4
|
|
|
|
steps:
|
|
|
|
- checkout
|
|
|
|
- install-system-dependencies
|
|
|
|
- run:
|
|
|
|
command: sudo apt-get install -y ffmpeg imagemagick libpam-dev
|
|
|
|
name: Install additional system dependencies
|
|
|
|
- run:
|
|
|
|
command: bundle config with 'pam_authentication'
|
|
|
|
name: Enable PAM authentication
|
|
|
|
- install-ruby-dependencies:
|
|
|
|
ruby-version: << parameters.ruby-version >>
|
|
|
|
- attach_workspace:
|
|
|
|
at: .
|
|
|
|
- wait-db
|
|
|
|
- run:
|
|
|
|
command: ./bin/rails db:create db:schema:load db:seed
|
|
|
|
name: Load database schema
|
|
|
|
- ruby/rspec-test
|
2018-04-23 03:16:26 -04:00
|
|
|
|
2020-01-10 20:04:57 -05:00
|
|
|
test-migrations:
|
2021-10-18 06:05:25 -04:00
|
|
|
executor:
|
|
|
|
name: default
|
2021-11-18 15:59:57 -05:00
|
|
|
ruby-version: '3.0'
|
2020-01-10 20:04:57 -05:00
|
|
|
steps:
|
2021-10-18 06:05:25 -04:00
|
|
|
- checkout
|
|
|
|
- install-system-dependencies
|
|
|
|
- install-ruby-dependencies:
|
2021-11-18 15:59:57 -05:00
|
|
|
ruby-version: '3.0'
|
2021-10-18 06:05:25 -04:00
|
|
|
- wait-db
|
2020-01-10 20:04:57 -05:00
|
|
|
- run:
|
2020-05-01 14:19:01 -04:00
|
|
|
command: ./bin/rails db:create
|
2021-10-18 06:05:25 -04:00
|
|
|
name: Create database
|
2020-01-10 20:04:57 -05:00
|
|
|
- run:
|
2020-05-01 14:19:01 -04:00
|
|
|
command: ./bin/rails db:migrate
|
2021-10-18 06:05:25 -04:00
|
|
|
name: Run migrations
|
2018-04-20 07:46:08 -04:00
|
|
|
|
|
|
|
workflows:
|
|
|
|
version: 2
|
|
|
|
build-and-test:
|
|
|
|
jobs:
|
2021-10-18 06:05:25 -04:00
|
|
|
- build
|
|
|
|
- test:
|
|
|
|
matrix:
|
|
|
|
parameters:
|
|
|
|
ruby-version:
|
|
|
|
- '2.7'
|
|
|
|
- '3.0'
|
|
|
|
name: test-ruby<< matrix.ruby-version >>
|
2021-05-06 08:22:54 -04:00
|
|
|
requires:
|
2020-01-09 23:34:25 -05:00
|
|
|
- build
|
2021-10-18 06:05:25 -04:00
|
|
|
- test-migrations:
|
2018-12-29 01:23:07 -05:00
|
|
|
requires:
|
|
|
|
- build
|
2021-10-18 06:05:25 -04:00
|
|
|
- node/run:
|
|
|
|
cache-version: v1
|
|
|
|
name: test-webui
|
|
|
|
pkg-manager: yarn
|
2021-05-06 08:22:54 -04:00
|
|
|
requires:
|
|
|
|
- build
|
2021-10-18 06:05:25 -04:00
|
|
|
version: lts
|
|
|
|
yarn-run: test:jest
|