Skip to content

Commit

Permalink
Merge tag '6.9.5-rc'
Browse files Browse the repository at this point in the history
2023 Q1 release
  • Loading branch information
agnessa committed Apr 13, 2023
2 parents 7a6ebfd + 0cd13f2 commit 0132bdd
Show file tree
Hide file tree
Showing 20 changed files with 2,628 additions and 952 deletions.
66 changes: 0 additions & 66 deletions .github/config/rubocop_linter_action.yml

This file was deleted.

42 changes: 6 additions & 36 deletions .github/workflows/auto_deploy_demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,20 +59,10 @@ jobs:
sudo apt update
sudo apt-get -yqq install libpq-dev postgresql-client
- name: Install Ruby 💎
- name: Install ruby + gems 💎
uses: ruby/setup-ruby@v1

- name: Setup gems cache
uses: actions/cache@v2
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}

- name: Install gems 💎
run: |
sudo apt-get install libffi-dev
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
bundler-cache: true

- name: Install CodeClimate reporter
uses: amancevice/setup-code-climate@v1
Expand Down Expand Up @@ -122,20 +112,10 @@ jobs:
with:
node-version: 16

- name: Install Ruby 💎
- name: Install ruby + gems 💎
uses: ruby/setup-ruby@v1

- name: Setup gems cache
uses: actions/cache@v2
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}

- name: Install gems 💎
run: |
sudo apt-get install libffi-dev
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
bundler-cache: true

- name: Deploy 🚀
uses: miloserdow/capistrano-deploy@master
Expand All @@ -153,20 +133,10 @@ jobs:
- name: Checkout 🛎️
uses: actions/checkout@v3

- name: Install Ruby 💎
- name: Install ruby + gems 💎
uses: ruby/setup-ruby@v1

- name: Setup gems cache
uses: actions/cache@v2
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}

- name: Install gems 💎
run: |
sudo apt-get install libffi-dev
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
bundler-cache: true

- name: Deploy 🚀
uses: miloserdow/capistrano-deploy@master
Expand Down
43 changes: 7 additions & 36 deletions .github/workflows/auto_deploy_develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ on:
push:
branches: [develop]
workflow_dispatch:

jobs:
front_end:
name: Front end tests and build
Expand Down Expand Up @@ -52,20 +53,10 @@ jobs:
sudo apt update
sudo apt-get -yqq install libpq-dev postgresql-client
- name: Install Ruby 💎
- name: Install ruby + gems 💎
uses: ruby/setup-ruby@v1

- name: Setup gems cache
uses: actions/cache@v2
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}

- name: Install gems 💎
run: |
sudo apt-get install libffi-dev
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
bundler-cache: true

- name: Install CodeClimate reporter
uses: amancevice/setup-code-climate@v1
Expand Down Expand Up @@ -115,20 +106,10 @@ jobs:
with:
node-version: 16

- name: Install Ruby 💎
- name: Install ruby + gems 💎
uses: ruby/setup-ruby@v1

- name: Setup gems cache
uses: actions/cache@v2
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}

- name: Install gems 💎
run: |
sudo apt-get install libffi-dev
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
bundler-cache: true

- name: Deploy 🚀
uses: miloserdow/capistrano-deploy@master
Expand All @@ -151,20 +132,10 @@ jobs:
with:
node-version: 16

- name: Install Ruby 💎
- name: Install ruby + gems 💎
uses: ruby/setup-ruby@v1

- name: Setup gems cache
uses: actions/cache@v2
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}

- name: Install gems 💎
run: |
sudo apt-get install libffi-dev
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
bundler-cache: true

- name: Deploy 🚀
uses: miloserdow/capistrano-deploy@master
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ env:
TRASE_LOCAL_MIRROR_SCHEMA: trase_earth
TRASE_LOCAL_SCHEMA: public

name: Tests
name: Back end checks

on:
push:
Expand Down Expand Up @@ -41,25 +41,10 @@ jobs:
sudo apt update
sudo apt-get -yqq install libpq-dev postgresql-client
- name: Install Ruby 💎
- name: Install ruby + gems 💎
uses: ruby/setup-ruby@v1

- name: Setup gems cache
uses: actions/cache@v2
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}

- name: Install gems 💎
run: |
sudo apt-get install libffi-dev
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
- name: Install CodeClimate reporter
uses: amancevice/setup-code-climate@v1
with:
cc_test_reporter_id: ${{ secrets.CC_TEST_REPORTER_ID }}
bundler-cache: true

- name: Setup database
env:
Expand All @@ -71,11 +56,6 @@ jobs:
bundle exec rails db:create RAILS_ENV=test
bundler exec rails db:structure:load RAILS_ENV=test
- name: Setup code coverage
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
run: cc-test-reporter before-build

- name: Run tests 🔧
env:
PGHOST: localhost
Expand All @@ -84,8 +64,18 @@ jobs:
RAILS_ENV: test
run: bundle exec rspec spec --fail-fast

- name: Publish code coverage 🚀
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
run: cc-test-reporter after-build
if: ${{ github.event_name != 'pull_request' }}
rubo_cop:
name: RuboCop
runs-on: ubuntu-latest

steps:
- name: Checkout️ 🛎️
uses: actions/checkout@v3

- name: Install ruby + gems 💎
uses: ruby/setup-ruby@v1
with:
bundler-cache: true

- name: Run RuboCop
run: bin/rails standard
31 changes: 0 additions & 31 deletions .github/workflows/code_review.yml

This file was deleted.

28 changes: 4 additions & 24 deletions .github/workflows/deploy_production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,20 +56,10 @@ jobs:
sudo apt update
sudo apt-get -yqq install libpq-dev postgresql-client
- name: Install Ruby 💎
- name: Install ruby + gems 💎
uses: ruby/setup-ruby@v1

- name: Setup gems cache
uses: actions/cache@v2
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}

- name: Install gems 💎
run: |
sudo apt-get install libffi-dev
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
bundler-cache: true

- name: Install CodeClimate reporter
uses: amancevice/setup-code-climate@v1
Expand Down Expand Up @@ -119,20 +109,10 @@ jobs:
with:
node-version: 16

- name: Install Ruby 💎
- name: Install ruby + gems 💎
uses: ruby/setup-ruby@v1

- name: Setup gems cache
uses: actions/cache@v2
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}

- name: Install gems 💎
run: |
sudo apt-get install libffi-dev
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
bundler-cache: true

- name: Deploy 🚀
uses: miloserdow/capistrano-deploy@master
Expand Down
14 changes: 2 additions & 12 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,20 +36,10 @@ jobs:
sudo apt update
sudo apt-get -yqq install libpq-dev postgresql-client
- name: Install Ruby 💎
- name: Install ruby + gems 💎
uses: ruby/setup-ruby@v1

- name: Setup gems cache
uses: actions/cache@v2
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}

- name: Install gems 💎
run: |
sudo apt-get install libffi-dev
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
bundler-cache: true

- name: Setup database
env:
Expand Down
Loading

0 comments on commit 0132bdd

Please sign in to comment.