We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c0b24d commit 9eb972bCopy full SHA for 9eb972b
1 file changed
.github/workflows/phpunit-tests-turso.yml
@@ -317,9 +317,16 @@ jobs:
317
-ex "bt" \
318
--args "$(command -v php)"
319
320
- - name: Run PHPUnit tests against Turso DB
+ - name: Run PHPUnit tests against Turso DB (under gdb)
321
continue-on-error: true
322
env:
323
- LD_PRELOAD: ${{ steps.preload.outputs.value }}
+ PRELOAD: ${{ steps.preload.outputs.value }}
324
working-directory: packages/mysql-on-sqlite
325
- run: php ./vendor/bin/phpunit -c ./phpunit.xml.dist
+ run: |
326
+ gdb -batch \
327
+ -ex "set confirm off" \
328
+ -ex "set pagination off" \
329
+ -ex "set environment LD_PRELOAD=$PRELOAD" \
330
+ -ex "run ./vendor/bin/phpunit -c ./phpunit.xml.dist" \
331
+ -ex "bt 30" \
332
+ --args "$(command -v php)" || true
0 commit comments