2024-06-12 13:38:20 +02:00
|
|
|
name: Historical data migration test
|
|
|
|
|
2023-02-19 07:06:34 +01:00
|
|
|
on:
|
2024-07-07 11:39:31 +02:00
|
|
|
merge_group:
|
2023-02-19 07:06:34 +01:00
|
|
|
push:
|
2024-07-07 11:39:31 +02:00
|
|
|
branches:
|
|
|
|
- 'main'
|
|
|
|
- 'stable-*'
|
2024-07-08 10:16:00 +02:00
|
|
|
paths:
|
|
|
|
- 'Gemfile*'
|
|
|
|
- '.ruby-version'
|
|
|
|
- '**/*.rb'
|
|
|
|
- '.github/workflows/test-migrations.yml'
|
|
|
|
- 'lib/tasks/tests.rake'
|
|
|
|
|
2023-02-19 07:06:34 +01:00
|
|
|
pull_request:
|
2024-07-08 10:16:00 +02:00
|
|
|
paths:
|
|
|
|
- 'Gemfile*'
|
|
|
|
- '.ruby-version'
|
|
|
|
- '**/*.rb'
|
|
|
|
- '.github/workflows/test-migrations.yml'
|
|
|
|
- 'lib/tasks/tests.rake'
|
2023-02-19 07:06:34 +01:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
2023-05-19 17:14:15 +02:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
|
|
|
|
matrix:
|
|
|
|
postgres:
|
|
|
|
- 14-alpine
|
|
|
|
- 15-alpine
|
2024-10-16 09:44:28 +02:00
|
|
|
- 16-alpine
|
|
|
|
- 17-alpine
|
2023-05-19 17:14:15 +02:00
|
|
|
|
2023-02-19 07:06:34 +01:00
|
|
|
services:
|
|
|
|
postgres:
|
2023-05-19 17:14:15 +02:00
|
|
|
image: postgres:${{ matrix.postgres}}
|
2023-02-19 07:06:34 +01:00
|
|
|
env:
|
|
|
|
POSTGRES_PASSWORD: postgres
|
|
|
|
POSTGRES_USER: postgres
|
|
|
|
options: >-
|
|
|
|
--health-cmd pg_isready
|
2024-06-14 17:49:08 +02:00
|
|
|
--health-interval 10ms
|
|
|
|
--health-timeout 3s
|
|
|
|
--health-retries 50
|
2023-02-19 07:06:34 +01:00
|
|
|
ports:
|
|
|
|
- 5432:5432
|
|
|
|
|
|
|
|
redis:
|
2023-03-10 11:10:47 +01:00
|
|
|
image: redis:7-alpine
|
2023-02-19 07:06:34 +01:00
|
|
|
options: >-
|
|
|
|
--health-cmd "redis-cli ping"
|
2024-06-14 17:49:08 +02:00
|
|
|
--health-interval 10ms
|
|
|
|
--health-timeout 3s
|
|
|
|
--health-retries 50
|
2023-02-19 07:06:34 +01:00
|
|
|
ports:
|
|
|
|
- 6379:6379
|
|
|
|
|
|
|
|
env:
|
|
|
|
DB_HOST: localhost
|
|
|
|
DB_USER: postgres
|
|
|
|
DB_PASS: postgres
|
|
|
|
DISABLE_SIMPLECOV: true
|
|
|
|
RAILS_ENV: test
|
|
|
|
BUNDLE_CLEAN: true
|
|
|
|
BUNDLE_FROZEN: true
|
2024-06-12 13:38:20 +02:00
|
|
|
BUNDLE_WITHOUT: 'development:production'
|
2023-02-19 07:06:34 +01:00
|
|
|
BUNDLE_JOBS: 3
|
|
|
|
BUNDLE_RETRY: 3
|
|
|
|
|
|
|
|
steps:
|
2023-09-11 10:41:26 +02:00
|
|
|
- uses: actions/checkout@v4
|
2023-02-19 07:06:34 +01:00
|
|
|
|
2023-10-24 13:43:24 +02:00
|
|
|
- name: Set up Ruby environment
|
|
|
|
uses: ./.github/actions/setup-ruby
|
2023-02-19 07:06:34 +01:00
|
|
|
|
2024-06-12 13:38:20 +02:00
|
|
|
- name: Test "one step migration" flow
|
|
|
|
run: |
|
|
|
|
bin/rails db:drop
|
|
|
|
bin/rails db:create
|
|
|
|
bin/rails tests:migrations:prepare_database
|
|
|
|
bin/rails db:migrate
|
|
|
|
bin/rails tests:migrations:check_database
|
2023-02-19 07:06:34 +01:00
|
|
|
|
2024-06-12 13:38:20 +02:00
|
|
|
- name: Test "two step migration" flow
|
|
|
|
run: |
|
|
|
|
bin/rails db:drop
|
|
|
|
bin/rails db:create
|
|
|
|
SKIP_POST_DEPLOYMENT_MIGRATIONS=true bin/rails tests:migrations:prepare_database
|
|
|
|
SKIP_POST_DEPLOYMENT_MIGRATIONS=true bin/rails db:migrate
|
|
|
|
bin/rails db:migrate
|
|
|
|
bin/rails tests:migrations:check_database
|