Skip to content

Commit 58040e7

Browse files
committed
Tune up Temporal Dev Server db config in stress tests
1 parent 89d0353 commit 58040e7

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ jobs:
211211
strategy:
212212
fail-fast: false
213213
matrix:
214-
node: [16, 18, 20]
214+
node: [18, 20, 22]
215215
platform: [linux-x64, linux-arm, macos-x64, macos-arm, windows-x64]
216216
reuse-v8-context: [true, false]
217217
server: [cli] # FIXME: Add 'cloud'
@@ -312,7 +312,7 @@ jobs:
312312
strategy:
313313
fail-fast: false
314314
matrix:
315-
node: [16, 18, 20]
315+
node: [18, 20, 22]
316316
platform: [linux-x64, linux-arm, macos-x64, macos-arm, windows-x64]
317317
sample: [hello-world, fetch-esm, hello-world-mtls]
318318
server: [cli, cloud]

.github/workflows/stress.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,11 @@ jobs:
113113
- name: Run Temporal CLI
114114
shell: bash
115115
run: |
116-
temporal server start-dev --headless &
116+
temporal server start-dev \
117+
--db-filename temporal.sqlite \
118+
--sqlite-pragma journal_mode=WAL \
119+
--sqlite-pragma synchronous=OFF \
120+
--headless &
117121
118122
- name: Run tests
119123
run: |

0 commit comments

Comments
 (0)