-
Notifications
You must be signed in to change notification settings - Fork 1.3k
232 lines (189 loc) · 6.25 KB
/
examples.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
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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
name: Examples
on:
pull_request:
push:
branches:
- main
- '*-dev'
jobs:
sqlx-cli:
name: Build SQLx CLI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use latest Rust
run: rustup override set stable
- uses: Swatinem/rust-cache@v2
with:
key: sqlx-cli
- run: >
cargo build
-p sqlx-cli
--bin sqlx
--release
--no-default-features
--features mysql,postgres,sqlite
- uses: actions/upload-artifact@v4
with:
name: sqlx-cli
path: target/release/sqlx
mysql:
name: MySQL Examples
runs-on: ubuntu-latest
needs: sqlx-cli
services:
mysql:
image: mysql:latest
env:
MYSQL_ROOT_PASSWORD: password
ports:
- 3306:3306
steps:
- name: Get SQLx-CLI
uses: actions/download-artifact@v4
with:
name: sqlx-cli
# $HOME is interpreted differently by the shell
path: /home/runner/.local/bin
- run: |
ls -R /home/runner/.local/bin
chmod +x /home/runner/.local/bin/sqlx
echo /home/runner/.local/bin >> $GITHUB_PATH
sleep 10
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
with:
key: mysql-examples
- name: Todos (Setup)
working-directory: examples/mysql/todos
env:
DATABASE_URL: mysql://root:password@localhost:3306/todos?ssl-mode=disabled
run: sqlx db setup
- name: Todos (Run)
env:
DATABASE_URL: mysql://root:password@localhost:3306/todos?ssl-mode=disabled
run: cargo run -p sqlx-example-mysql-todos
postgres:
name: PostgreSQL Examples
runs-on: ubuntu-latest
needs: sqlx-cli
services:
postgres:
image: postgres:latest
env:
POSTGRES_PASSWORD: password
ports:
- 5432:5432
steps:
- name: Get SQLx-CLI
uses: actions/download-artifact@v4
with:
name: sqlx-cli
path: /home/runner/.local/bin
- run: |
ls -R /home/runner/.local/bin
chmod +x $HOME/.local/bin/sqlx
echo $HOME/.local/bin >> $GITHUB_PATH
sleep 10
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
with:
key: pg-examples
- name: Axum Social with Tests (Setup)
working-directory: examples/postgres/axum-social-with-tests
env:
DATABASE_URL: postgres://postgres:password@localhost:5432/axum-social
run: sqlx db setup
- name: Axum Social with Tests (Check)
env:
DATABASE_URL: postgres://postgres:password@localhost:5432/axum-social
run: cargo check -p sqlx-example-postgres-axum-social
- name: Axum Social with Tests (Test)
env:
DATABASE_URL: postgres://postgres:password@localhost:5432/axum-social
run: cargo test -p sqlx-example-postgres-axum-social
# The Chat example has an interactive TUI which is not trivial to test automatically,
# so we only check that it compiles.
- name: Chat (Check)
run: cargo check -p sqlx-example-postgres-chat
- name: Files (Setup)
working-directory: examples/postgres/files
env:
DATABASE_URL: postgres://postgres:password@localhost:5432/files
run: sqlx db setup
- name: Files (Run)
env:
DATABASE_URL: postgres://postgres:password@localhost:5432/files
run: cargo run -p sqlx-example-postgres-files
- name: JSON (Setup)
working-directory: examples/postgres/json
env:
DATABASE_URL: postgres://postgres:password@localhost:5432/json
run: sqlx db setup
- name: JSON (Run)
env:
DATABASE_URL: postgres://postgres:password@localhost:5432/json
run: cargo run -p sqlx-example-postgres-json
- name: Listen (Setup)
working-directory: examples/postgres/listen
env:
DATABASE_URL: postgres://postgres:password@localhost:5432/listen
run: sqlx db create
- name: Listen (Run)
env:
DATABASE_URL: postgres://postgres:password@localhost:5432/listen
run: cargo run -p sqlx-example-postgres-listen
- name: Mockable TODOs (Setup)
working-directory: examples/postgres/mockable-todos
env:
DATABASE_URL: postgres://postgres:password@localhost:5432/mockable-todos
run: sqlx db setup
- name: Mockable TODOs (Run)
env:
DATABASE_URL: postgres://postgres:password@localhost:5432/mockable-todos
run: cargo run -p sqlx-example-postgres-mockable-todos
- name: TODOs (Setup)
working-directory: examples/postgres/todos
env:
DATABASE_URL: postgres://postgres:password@localhost:5432/todos
run: sqlx db setup
- name: TODOs (Run)
env:
DATABASE_URL: postgres://postgres:password@localhost:5432/todos
# TODO: test full CLI
run: cargo run -p sqlx-example-postgres-todos
- name: Transaction (Setup)
working-directory: examples/postgres/transaction
env:
DATABASE_URL: postgres://postgres:password@localhost:5432/txn
run: sqlx db setup
- name: Transaction (Run)
env:
DATABASE_URL: postgres://postgres:password@localhost:5432/txn
run: cargo run -p sqlx-example-postgres-transaction
sqlite:
name: SQLite Examples
runs-on: ubuntu-latest
needs: sqlx-cli
steps:
- name: Get SQLx-CLI
uses: actions/download-artifact@v4
with:
name: sqlx-cli
path: /home/runner/.local/bin
- run: |
ls -R /home/runner/.local/bin
chmod +x /home/runner/.local/bin/sqlx
echo /home/runner/.local/bin >> $GITHUB_PATH
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
with:
key: sqlite-examples
- name: TODOs (Setup)
env:
DATABASE_URL: sqlite://todos.sqlite
run: sqlx db setup --source=examples/sqlite/todos/migrations
- name: TODOs (Run)
env:
DATABASE_URL: sqlite://todos.sqlite
run: cargo run -p sqlx-example-sqlite-todos