We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5e68db commit 1ded7e6Copy full SHA for 1ded7e6
1 file changed
.github/workflows/android-vulkan.yml
@@ -35,12 +35,15 @@ jobs:
35
continue-on-error: true
36
run: |
37
../kore/make android -g vulkan --debug --compile
38
- find . -name "core.*" -type f
+ - name: Find core
39
+ run: |
40
+ sudo coredumpctl --no-pager --output kmake.core dump /usr/bin/kmake || true
41
+ ls -lh kmake.core || echo "No core found"
42
- name: Upload core
43
uses: actions/upload-artifact@v4
44
with:
- name: core
- path: '**/core.*'
45
+ name: kmake-core
46
+ path: kmake.core
47
- name: Compile 01_triangle
48
working-directory: 01_triangle
49
run: ../kore/make android -g vulkan --debug --compile
0 commit comments