We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ad5b38 commit 4e6ab1bCopy full SHA for 4e6ab1b
1 file changed
.github/workflows/build.yml
@@ -82,6 +82,7 @@ jobs:
82
run: |
83
sudo apt-get update
84
sudo apt-get install cmake libxrandr-dev libxinerama-dev libxcursor-dev mesa-common-dev libx11-xcb-dev pkg-config nodejs npm mesa-vulkan-drivers libvulkan1
85
+ sudo apt-get install -y gdb
86
cmake --version
87
gcc --version
88
@@ -100,10 +101,10 @@ jobs:
100
101
102
- name: Test
103
shell: bash
104
+ if: startsWith(matrix.config.os, 'Ubuntu')
105
env:
106
WEBGPU_USE_CI_AVAILABLE_RENDERER: "1"
- run: |
- npm test
107
+ run: gdb -return-child-result -batch -ex "run" -ex "thread apply all bt" --args node test/test.js
108
109
- name: Upload Artifact ⬆️
110
uses: actions/upload-artifact@v4
0 commit comments