-
Notifications
You must be signed in to change notification settings - Fork 56
154 lines (151 loc) · 4.58 KB
/
postgresql.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
name: Test PostgreSQL
on: [push, pull_request]
jobs:
test-latest:
name: "Active Record 7.1 + Ruby 3.3"
runs-on: ubuntu-latest
services:
postgres:
image: postgres
env:
POSTGRES_DB: active_record_doctor_primary
POSTGRES_USER: github
POSTGRES_PASSWORD: github
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/Gemfile.activerecord-7.1.x
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: "3.3"
bundler-cache: true
- name: Prepare PostgreSQL
run: createdb active_record_doctor_secondary
env:
PGHOST: localhost
PGPORT: 5432
PGUSER: github
PGPASSWORD: github
PGDATABASE: postgres
- name: Run the test suite against PostgreSQL
run: bundle exec rake test:postgresql
env:
DATABASE_HOST: localhost
DATABASE_PORT: 5432
DATABASE_USERNAME: github
DATABASE_PASSWORD: github
test-supported:
name: "Active Record ${{ matrix.active_record }} + Ruby ${{ matrix.ruby }}"
needs: [test-latest]
runs-on: ubuntu-latest
services:
postgres:
image: postgres
env:
POSTGRES_DB: active_record_doctor_primary
POSTGRES_USER: github
POSTGRES_PASSWORD: github
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
strategy:
matrix:
ruby: ["3.0", "3.1", "3.2", "3.3"]
active_record: ["6.1", "7.0", "7.1"]
exclude:
- ruby: "3.3"
active_record: "7.1"
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/Gemfile.activerecord-${{ matrix.active_record }}.x
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
rubygems: ${{ matrix.rubygems }}
bundler-cache: true
- name: Prepare PostgreSQL
run: createdb active_record_doctor_secondary
env:
PGHOST: localhost
PGPORT: 5432
PGUSER: github
PGPASSWORD: github
PGDATABASE: postgres
- name: Run the test suite against PostgreSQL
run: bundle exec rake test:postgresql
env:
DATABASE_HOST: localhost
DATABASE_PORT: 5432
DATABASE_USERNAME: github
DATABASE_PASSWORD: github
test-unsupported:
name: "Active Record ${{ matrix.active_record }} + Ruby ${{ matrix.ruby }}"
needs: [test-supported]
runs-on: ubuntu-latest
services:
postgres:
image: postgres
env:
POSTGRES_DB: active_record_doctor_primary
POSTGRES_USER: github
POSTGRES_PASSWORD: github
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
strategy:
matrix:
ruby: ["2.4", "2.5", "2.6", "2.7"]
active_record: ["4.2", "5.0", "5.1", "5.2", "6.0"]
exclude:
- ruby: "2.7"
active_record: "4.2"
- ruby: "2.4"
active_record: "6.0"
include:
- ruby: "3.0"
active_record: "6.0"
- ruby: "3.1"
active_record: "6.0"
- ruby: "3.2"
active_record: "6.0"
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/Gemfile.activerecord-${{ matrix.active_record }}.x
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
rubygems: ${{ (matrix.ruby == '2.4' || matrix.ruby == '2.5' || matrix.ruby == '2.6') && '3.2.3' || '' }}
bundler-cache: true
- name: Prepare PostgreSQL
if: startsWith(matrix.active_record, '6.') || startsWith(matrix.active_record, '7.')
run: createdb active_record_doctor_secondary
env:
PGHOST: localhost
PGPORT: 5432
PGUSER: github
PGPASSWORD: github
PGDATABASE: postgres
- name: Run the test suite against PostgreSQL
run: bundle exec rake test:postgresql
env:
DATABASE_HOST: localhost
DATABASE_PORT: 5432
DATABASE_USERNAME: github
DATABASE_PASSWORD: github