2021-02-17 19:06:55 +01:00
|
|
|
name: Continuous Integration
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: 'main'
|
|
|
|
pull_request:
|
|
|
|
branches: 'main'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
linters:
|
|
|
|
name: Linters
|
|
|
|
runs-on: ubuntu-latest
|
2021-10-26 16:58:48 +02:00
|
|
|
services:
|
|
|
|
postgres:
|
|
|
|
image: postgres:12
|
|
|
|
env:
|
|
|
|
POSTGRES_USER: tps_test
|
|
|
|
POSTGRES_DB: tps_test
|
|
|
|
POSTGRES_PASSWORD: tps_test
|
|
|
|
ports: [ "5432:5432" ]
|
2021-02-17 19:06:55 +01:00
|
|
|
|
2021-10-26 16:58:48 +02:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2021-10-26 13:07:42 +02:00
|
|
|
|
2021-10-26 16:58:48 +02:00
|
|
|
- name: Setup the app code and dependancies
|
|
|
|
uses: ./.github/actions/ci-setup-rails
|
2021-02-17 19:06:55 +01:00
|
|
|
|
|
|
|
- name: Run linters
|
|
|
|
run: |
|
|
|
|
bundle exec rake lint
|
2021-10-26 16:58:48 +02:00
|
|
|
bundle exec rake zeitwerk:check
|
2021-02-17 19:06:55 +01:00
|
|
|
|
2022-07-05 13:38:00 +02:00
|
|
|
js_tests:
|
|
|
|
name: JavaScript tests
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Setup Node
|
|
|
|
uses: actions/setup-node@v2
|
|
|
|
with:
|
|
|
|
cache: 'yarn'
|
|
|
|
|
|
|
|
- name: Install Node modules
|
|
|
|
run: |
|
|
|
|
node --version
|
|
|
|
yarn install --frozen-lockfile
|
|
|
|
shell: bash
|
|
|
|
|
|
|
|
- name: Run tests
|
|
|
|
run: |
|
|
|
|
yarn test
|
|
|
|
|
2021-10-26 16:58:48 +02:00
|
|
|
unit_tests:
|
|
|
|
name: Unit tests
|
2021-02-17 19:06:55 +01:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
services:
|
|
|
|
postgres:
|
|
|
|
image: postgres:12
|
|
|
|
env:
|
|
|
|
POSTGRES_USER: tps_test
|
|
|
|
POSTGRES_DB: tps_test
|
|
|
|
POSTGRES_PASSWORD: tps_test
|
|
|
|
ports: ["5432:5432"]
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-11-03 21:54:54 +01:00
|
|
|
instances: [0, 1, 2, 3, 4, 5]
|
2021-02-17 19:06:55 +01:00
|
|
|
|
|
|
|
steps:
|
2021-10-26 16:58:48 +02:00
|
|
|
- uses: actions/checkout@v2
|
2021-02-17 19:06:55 +01:00
|
|
|
|
2021-10-26 16:58:48 +02:00
|
|
|
- name: Setup the app runtime and dependencies
|
|
|
|
uses: ./.github/actions/ci-setup-rails
|
2021-02-17 19:06:55 +01:00
|
|
|
|
2021-10-26 16:58:48 +02:00
|
|
|
- name: Pre-compile assets
|
|
|
|
uses: ./.github/actions/ci-setup-assets
|
2021-10-26 13:07:42 +02:00
|
|
|
|
2021-11-03 21:54:54 +01:00
|
|
|
- name: Setup split tests
|
|
|
|
uses: ./.github/actions/ci-setup-split-tests
|
|
|
|
with:
|
|
|
|
results_path: tmp/*.junit.xml
|
|
|
|
|
2021-10-26 16:58:48 +02:00
|
|
|
- name: Run tests
|
2021-10-26 14:01:56 +02:00
|
|
|
run: |
|
2021-11-03 21:54:54 +01:00
|
|
|
SPEC_FILES=$(./split_tests -glob='spec/**/*_spec.rb' -exclude-glob='spec/system/**' -split-index=${{ strategy.job-index }} -split-total=${{ strategy.job-total }} -junit -junit-path=tmp/*.junit.xml)
|
2021-10-26 16:58:48 +02:00
|
|
|
echo "Running tests for bin/rspec $SPEC_FILES"
|
2021-11-03 21:54:54 +01:00
|
|
|
bin/rspec $SPEC_FILES --format progress --format RspecJunitFormatter --out tmp/rspec_${{ github.job }}_${{ strategy.job-index }}.junit.xml
|
|
|
|
|
|
|
|
- name: Upload test results for this instance
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: test-reports
|
|
|
|
path: tmp/rspec_${{ github.job }}_${{ strategy.job-index }}.junit.xml
|
2021-10-26 14:01:56 +02:00
|
|
|
|
2021-10-26 16:58:48 +02:00
|
|
|
system_tests:
|
|
|
|
name: System tests
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
services:
|
|
|
|
postgres:
|
|
|
|
image: postgres:12
|
2021-02-17 19:06:55 +01:00
|
|
|
env:
|
2021-10-26 16:58:48 +02:00
|
|
|
POSTGRES_USER: tps_test
|
|
|
|
POSTGRES_DB: tps_test
|
|
|
|
POSTGRES_PASSWORD: tps_test
|
|
|
|
ports: ["5432:5432"]
|
2021-02-17 19:06:55 +01:00
|
|
|
|
2021-10-26 16:58:48 +02:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-11-03 21:54:54 +01:00
|
|
|
instances: [0, 1]
|
2021-10-26 16:58:48 +02:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Setup the app runtime and dependencies
|
|
|
|
uses: ./.github/actions/ci-setup-rails
|
|
|
|
|
|
|
|
- name: Pre-compile assets
|
|
|
|
uses: ./.github/actions/ci-setup-assets
|
2021-10-26 14:34:11 +02:00
|
|
|
|
2021-11-03 21:54:54 +01:00
|
|
|
- name: Setup split tests
|
|
|
|
uses: ./.github/actions/ci-setup-split-tests
|
|
|
|
with:
|
|
|
|
results_path: tmp/*.junit.xml
|
|
|
|
|
2021-02-17 19:06:55 +01:00
|
|
|
- name: Run tests
|
2021-10-26 16:58:48 +02:00
|
|
|
run: |
|
2021-11-03 21:54:54 +01:00
|
|
|
SPEC_FILES=$(./split_tests -glob='spec/system/**/*_spec.rb' -split-index=${{ strategy.job-index }} -split-total=${{ strategy.job-total }} -junit -junit-path=tmp/*.junit.xml)
|
2021-10-26 16:58:48 +02:00
|
|
|
echo "Running tests for bin/rspec $SPEC_FILES"
|
2022-06-17 12:36:21 +02:00
|
|
|
RAILS_ENV=test bin/rspec $SPEC_FILES --format progress --format RspecJunitFormatter --out tmp/rspec_${{ github.job }}_${{ strategy.job-index }}.junit.xml
|
2021-11-03 21:54:54 +01:00
|
|
|
|
|
|
|
- name: Upload test results for this instance
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: test-reports
|
|
|
|
path: tmp/rspec_${{ github.job }}_${{ strategy.job-index }}.junit.xml
|
|
|
|
|
|
|
|
save_test_reports:
|
|
|
|
name: Save test reports
|
|
|
|
needs: [unit_tests, system_tests]
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Collect test results from all instances
|
|
|
|
uses: actions/download-artifact@v2
|
|
|
|
with:
|
|
|
|
name: test-reports
|
|
|
|
path: tmp
|
|
|
|
|
|
|
|
- name: Save test results and timing data, to better split future tests
|
|
|
|
uses: ./.github/actions/ci-save-split-tests
|
|
|
|
with:
|
|
|
|
results_path: tmp/*.junit.xml
|