forked from instantdb/instant
-
Notifications
You must be signed in to change notification settings - Fork 0
395 lines (344 loc) · 12.5 KB
/
Copy pathclojure.yml
File metadata and controls
395 lines (344 loc) · 12.5 KB
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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
name: Clojure CI
env:
INSTANT_TIMINGS_APP_ID: 'b6003065-8152-4b15-8bcd-09a70e322854'
on:
push:
jobs:
detect_changes:
runs-on: ubuntu-latest
outputs:
clj_did_change: ${{ fromJSON(steps.detect_changes.outputs.result).clj_did_change }}
refinery_did_change: ${{ fromJSON(steps.detect_changes.outputs.result).refinery_did_change }}
steps:
- name: Detect changes
id: detect_changes
uses: actions/github-script@v7
with:
script: |
const base = context.payload.before || context.payload.pull_request?.base.sha;
const head = context.payload.after || context.payload.pull_request?.head.sha;
const owner = context.repo.owner;
const repo = context.repo.repo;
const { data } = await (base === '0000000000000000000000000000000000000000'
? github.rest.repos.getCommit({
owner,
repo,
ref: head,
})
: github.rest.repos.compareCommits({
owner,
repo,
base,
head,
}));
const files = data.files.map((f) => f.filename);
const output = {
clj_did_change: false,
refinery_did_change: false,
};
for (const file of files) {
const changes = {
server: file.startsWith('server/'),
refinery: file.startsWith('server/refinery/'),
workflowFile: file === '.github/workflows/clojure.yml'
};
console.log('file', file);
console.log('changes', changes);
if (changes.server || changes.workflowFile) {
console.log('clj_did_change', true);
output.clj_did_change = true;
}
if (changes.refinery) {
console.log('clj_did_change', true);
output.clj_did_change = true;
console.log('refinery_did_change', true);
output.refinery_did_change = true;
}
}
console.log('output', output);
return output;
- name: Fetch timings
if: ${{ fromJSON(steps.detect_changes.outputs.result) }}
env:
INSTANT_TIMINGS_ADMIN_TOKEN: ${{ secrets.INSTANT_TIMINGS_ADMIN_TOKEN }}
continue-on-error: true
run: |
if [ -n "$INSTANT_TIMINGS_ADMIN_TOKEN" ]; then
curl 'https://api.instantdb.com/admin/query' \
-v \
-H "app-id: $INSTANT_TIMINGS_APP_ID" \
-H "Authorization: Bearer $INSTANT_TIMINGS_ADMIN_TOKEN" \
-H "Content-Type: application/json" \
--data-raw '{"query": {"timings": {}}}' \
-o timings.json || echo "curl failed to fetch timings"
else
echo "No admin token, skipping timings fetch"
fi
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: timings
path: timings.json
clj-check:
runs-on: ubuntu-latest
needs: [ detect_changes ]
if: needs.detect_changes.outputs.clj_did_change == 'true'
strategy:
fail-fast: false
matrix:
# List of indicies from 0 to NODE_COUNT
# Make sure this matches NODE_COUNT below
node_index: [0, 1, 2, 3, 4]
services:
postgres:
image: ghcr.io/instantdb/postgresql:postgresql-16-pg-hint-plan
ports:
- 5432:5432
env:
POSTGRES_USER: test_user
POSTGRES_PASSWORD: test_password
POSTGRES_DB: test_db
options: >-
--health-cmd "exit 0"
--health-interval 1s
--health-timeout 1s
--health-retries 1
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Prepare java
uses: actions/setup-java@v4
with:
distribution: 'corretto'
java-version: '26'
- name: Prepare database
env:
DATABASE_URL: "postgres://test_user:test_password@localhost:5432/test_db?sslmode=disable"
timeout-minutes: 1
run: |
curl -L "https://github.com/golang-migrate/migrate/releases/download/v4.17.0/migrate.linux-amd64.tar.gz" | tar xvz
chmod +x migrate
until pg_isready -h localhost -p 5432; do
echo "Waiting for postgres to be ready..."
sleep 1
done
./migrate \
-source file://server/resources/migrations \
-database $DATABASE_URL \
up
psql -d $DATABASE_URL -c "select version()"
# Uncomment to see auto explain logs at the end of tests in the stop containers step
# psql -d $DATABASE_URL -v ON_ERROR_STOP=1 <<'SQL'
# ALTER SYSTEM SET session_preload_libraries = 'auto_explain';
# SELECT pg_reload_conf();
# SQL
# psql -d $DATABASE_URL -v ON_ERROR_STOP=1 <<'SQL'
# ALTER SYSTEM SET auto_explain.log_min_duration = '100ms';
# ALTER SYSTEM SET auto_explain.log_analyze = on;
# ALTER SYSTEM SET auto_explain.log_nested_statements = on;
# ALTER SYSTEM SET auto_explain.log_timing = on;
# ALTER SYSTEM SET auto_explain.log_triggers = on;
# ALTER SYSTEM SET auto_explain.log_verbose = on;
# ALTER SYSTEM SET auto_explain.log_buffers = on;
# ALTER SYSTEM SET auto_explain.log_parameter_max_length = 0;
# SELECT pg_reload_conf();
# SQL
- name: Install clojure tools
uses: DeLaGuardo/setup-clojure@13.1
with:
cli: 1.11.3.1463
- name: Restore Clojure Dependencies Cache
uses: actions/cache/restore@v4
with:
path: |
~/.m2/repository
~/.gitlibs
~/.deps.clj
key: cljdeps-${{ hashFiles('server/deps.edn') }}
restore-keys: |
cljdeps-
- name: Get timings
uses: actions/download-artifact@v4
with:
pattern: timings
path: server
- name: Install Clojure dependencies
working-directory: server
run: clojure -P
- name: Compile java src files
working-directory: server
run: clojure -T:build compile-java
- name: Run Clojure tests
working-directory: server
env:
DATABASE_URL: "jdbc:postgresql://localhost:5432/test_db?user=test_user&password=test_password"
TEST: "true"
STRIPE_API_KEY: ${{ secrets.STRIPE_TEST_KEY }}
INSTANT_TIMINGS_ADMIN_TOKEN: ${{ secrets.INSTANT_TIMINGS_ADMIN_TOKEN }}
SAVE_TIMINGS: ${{ github.ref == 'refs/heads/main' }}
NODE_INDEX: ${{ matrix.node_index }}
# Make sure this matches the length of the matrix
NODE_COUNT: "5"
run: clojure -M:test
- name: Publish Test Report
uses: mikepenz/action-junit-report@v4
if: success() || failure() # always run even if the previous step fails
with:
report_paths: '**/server/target/test-results/*.xml'
- name: Save Clojure Dependencies Cache
if: github.ref == 'refs/heads/main'
uses: actions/cache/save@v4
with:
path: |
~/.m2/repository
~/.gitlibs
~/.deps.clj
key: cljdeps-${{ hashFiles('server/deps.edn') }}
clj-build-check:
runs-on: ubuntu-latest
needs: [ detect_changes ]
if: needs.detect_changes.outputs.clj_did_change == 'true'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Prepare java
uses: actions/setup-java@v4
with:
distribution: 'corretto'
java-version: '26'
- name: Install clojure tools
uses: DeLaGuardo/setup-clojure@13.1
with:
cli: 1.11.3.1463
- name: Cache Clojure Dependencies
uses: actions/cache/restore@v4
with:
path: |
~/.m2/repository
~/.gitlibs
~/.deps.clj
key: cljdeps-${{ hashFiles('server/deps.edn') }}
restore-keys: cljdeps
- name: Install Clojure dependencies
working-directory: server
run: clojure -P
- name: Build uberjar
working-directory: server
run: clojure -T:build uber
lint:
runs-on: ubuntu-latest
needs: [ detect_changes ]
if: needs.detect_changes.outputs.clj_did_change == 'true'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Prepare java
uses: actions/setup-java@v4
with:
distribution: 'corretto'
java-version: '26'
- name: Install clojure tools
uses: DeLaGuardo/setup-clojure@13.1
with:
cli: 1.11.3.1463
- name: Cache Clojure Dependencies
uses: actions/cache/restore@v4
with:
path: |
~/.m2/repository
~/.gitlibs
~/.deps.clj
key: cljdeps-${{ hashFiles('server/deps.edn') }}
restore-keys: cljdeps
- name: Install Clojure dependencies
working-directory: server
run: clojure -P -M:lint
- name: Lint
working-directory: server
run: clojure -M:lint "--config" ".clj-kondo/ci-config.edn"
publish-image:
runs-on: ubuntu-latest
if: (needs.detect_changes.outputs.clj_did_change == 'true' && github.ref == 'refs/heads/main') || contains(github.event.head_commit.message, '[staging]')
# Start publish image if we have clj changes
needs: [ detect_changes ]
permissions:
id-token: write
contents: read
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: arn:aws:iam::597134865416:role/aws-credentials-for-github-actions-Role-x0lUbtwJNb7G
aws-region: us-east-1
- name: Login to Amazon ECR
id: login-ecr
uses: aws-actions/amazon-ecr-login@v2
- name: Build, tag, and push docker image to Amazon ECR
working-directory: server
env:
IMAGE_TAG: ${{ github.sha }}
run: |
docker buildx build --push \
--cache-to mode=max,image-manifest=true,oci-mediatypes=true,compression=zstd,type=registry,ref=597134865416.dkr.ecr.us-east-1.amazonaws.com/instant-prod-ecr:cache \
--cache-from type=registry,ref=597134865416.dkr.ecr.us-east-1.amazonaws.com/instant-prod-ecr:cache \
-t 597134865416.dkr.ecr.us-east-1.amazonaws.com/instant-prod-ecr:$IMAGE_TAG .
publish-eb:
runs-on: ubuntu-latest
# Publish to elastic beanstalk only if we pass the tests
needs:
- clj-check
- publish-image
permissions:
id-token: write
contents: read
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: arn:aws:iam::597134865416:role/aws-credentials-for-github-actions-Role-x0lUbtwJNb7G
aws-region: us-east-1
- name: Update docker-compose.yml
working-directory: server
env:
IMAGE_TAG: ${{ github.sha }}
run: |
sed -i "s|IMAGE_REPLACE_ME|597134865416.dkr.ecr.us-east-1.amazonaws.com/instant-prod-ecr:${IMAGE_TAG}|g" docker-compose.yml
cat docker-compose.yml
- name: Create eb application version
uses: "./.github/actions/elastic-beanstalk"
with:
working-directory: "server"
files: '["docker-compose.yml", ".ebextensions/resources.config", ".ebextensions/sysctl.config", ".platform/hooks/prebuild/prebuild.sh", ".platform/hooks/postdeploy/cloudwatch.sh", ".platform/confighooks/prebuild/prebuild.sh", ".platform/confighooks/postdeploy/cloudwatch.sh"]'
aws-region: "us-east-1"
bucket: "elasticbeanstalk-us-east-1-597134865416"
application-name: "instant-docker-prod"
publish-refinery-eb:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main' && needs.detect_changes.outputs.refinery_did_change == 'true'
needs:
- detect_changes
permissions:
id-token: write
contents: read
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: arn:aws:iam::597134865416:role/aws-credentials-for-github-actions-Role-x0lUbtwJNb7G
aws-region: us-east-1
- name: Create eb application version
uses: "./.github/actions/elastic-beanstalk"
with:
working-directory: "server/refinery/"
files: '["docker-compose.yml", "config.yaml", "config-redis.yaml", "rules.yaml", "refinery.env", ".ebextensions/resources.config"]'
aws-region: "us-east-1"
bucket: "elasticbeanstalk-us-east-1-597134865416"
application-name: "refinery"