-
Notifications
You must be signed in to change notification settings - Fork 1
194 lines (154 loc) · 5.98 KB
/
ci.yaml
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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
name: CI
env:
# Database to connect to that can create other databases with `CREATE DATABASE`.
ADMIN_DATABASE_URL: postgres://postgres:postgres@localhost:5432
# Just a common place for steps to put binaries they need and which is added
# to GITHUB_PATH/PATH.
BIN_PATH: /home/runner/bin
# The version of Ruby that non-spec tasks like the build check or lint run
# against. The setup-ruby step must have a version specified, which is why
# this is necessary.
#
# If updating this value, you probably also want to add a new version to the
# spec version matrix below.
RUBY_VERSION: "3.3"
# A suitable URL for a test database.
TEST_DATABASE_NAME: river_test
TEST_DATABASE_URL: postgres://postgres:[email protected]:5432/river_test?sslmode=disable
on:
- push
jobs:
gem_build:
runs-on: ubuntu-latest
timeout-minutes: 3
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Ruby + `bundle install`
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ env.RUBY_VERSION }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Build gem (riverqueue-ruby)
run: gem build riverqueue.gemspec
working-directory: .
- name: Build gem (riverqueue-activerecord)
run: gem build riverqueue-activerecord.gemspec
working-directory: ./driver/riverqueue-activerecord
- name: Build gem (riverqueue-sequel)
run: gem build riverqueue-sequel.gemspec
working-directory: ./driver/riverqueue-sequel
lint:
runs-on: ubuntu-latest
timeout-minutes: 3
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Ruby + `bundle install`
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ env.RUBY_VERSION }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Standard Ruby (riverqueue-ruby)
run: bundle exec standardrb
working-directory: .
- name: bundle install (riverqueue-activerecord)
run: bundle install
working-directory: ./driver/riverqueue-activerecord
- name: Standard Ruby (riverqueue-activerecord)
run: bundle exec standardrb
working-directory: ./driver/riverqueue-activerecord
- name: bundle install (riverqueue-sequel)
run: bundle install
working-directory: ./driver/riverqueue-sequel
- name: Standard Ruby (riverqueue-sequel)
run: bundle exec standardrb
working-directory: ./driver/riverqueue-sequel
tool_versions_check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Check RUBY_VERSION matches .tool-versions Ruby version
run: |
cat <<- "EOF" | ruby
ruby_version_env = ENV["RUBY_VERSION"] || abort("need RUBY_VERSION")
ruby_version_tool_versions = File.read('.tool-versions').split('\n')[0].split[1]
if ruby_version_env != ruby_version_tool_versions
abort("CI version $RUBY_VERSION ${ruby_version_env } should match .tool-versions Ruby ${ruby_version_tool_versions }")
EOF
# run: |
# [[ "$RUBY_VERSION" == "$(cat .tool-versions | grep ruby | cut -w -f 2)" ]] || echo "CI version \$RUBY_VERSION should match .tool-versions Ruby `cat .tool-versions | grep ruby | cut -w -f 2`" && (exit 1)
type_check:
runs-on: ubuntu-latest
timeout-minutes: 3
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Ruby + `bundle install`
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ env.RUBY_VERSION }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Steep (riverqueue-ruby)
run: bundle exec steep check
working-directory: .
spec:
runs-on: ubuntu-latest
timeout-minutes: 3
strategy:
matrix:
# If adding a value, you probably also want to update the default
# RUBY_VERSION for non-spec jobs above.
ruby_version:
- "3.1"
- "3.2"
- "3.3"
services:
postgres:
image: postgres
env:
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isready
--health-interval 2s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Ruby + `bundle install`
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby_version }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
# Needed for River's CLI. There is a version of Go on Actions' base image,
# but it's old and can't read modern `go.mod` annotations correctly.
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: "stable"
check-latest: true
- name: Create database
run: psql --echo-errors --quiet -c '\timing off' -c "CREATE DATABASE ${TEST_DATABASE_NAME};" ${ADMIN_DATABASE_URL}
- name: Install River CLI
run: go install github.com/riverqueue/river/cmd/river@latest
- name: river migrate-up
run: river migrate-up --database-url "$TEST_DATABASE_URL"
- name: Rspec (riverqueue-ruby)
run: bundle exec rspec
working-directory: .
- name: bundle install (riverqueue-activerecord)
run: bundle install
working-directory: ./driver/riverqueue-activerecord
- name: Rspec (riverqueue-activerecord)
run: bundle exec rspec
working-directory: ./driver/riverqueue-activerecord
- name: bundle install (riverqueue-sequel)
run: bundle install
working-directory: ./driver/riverqueue-sequel
- name: Rspec (riverqueue-sequel)
run: bundle exec rspec
working-directory: ./driver/riverqueue-sequel