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 f624e37 commit 51732dcCopy full SHA for 51732dc
.github/workflows/ci.yml
@@ -65,7 +65,15 @@ jobs:
65
- name: Build
66
run: cmake --build build --config Release
67
68
- - name: Test
+ - name: Test Vulkan
69
+ if: matrix.os == 'ubuntu-22.04'
70
+ working-directory: ./build
71
+ run: |
72
+ export GGML_VK_VISIBLE_DEVICES=0
73
+ ctest --verbose
74
+
75
+ - name: Test CPU
76
+ if: matrix.os != 'ubuntu-22.04'
77
working-directory: ./build
78
run: ctest --verbose -C Release
79
@@ -77,10 +85,12 @@ jobs:
85
run: cpack
86
87
- name: Upload artifacts
88
+ if: success() || failure()
80
89
uses: actions/upload-artifact@v4
81
90
with:
82
91
name: visioncpp-${{ matrix.os }}
83
92
path: |
84
93
./build/*.tar.gz
94
./build/*.zip
95
+ ./tests/results/*.png
96
compression-level: 0
0 commit comments