Skip to content

Commit e287c85

Browse files
committed
ci: add debug build to sanitzier build matrix
1 parent b391579 commit e287c85

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/build.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ jobs:
7272
strategy:
7373
matrix:
7474
sanitizer: [ADDRESS, THREAD, UNDEFINED]
75+
build_type: [Debug, Release]
7576

7677
steps:
7778
- name: Clone
@@ -90,7 +91,7 @@ jobs:
9091
mkdir build
9192
cd build
9293
cmake .. -DLLAMA_SANITIZE_${{ matrix.sanitizer }}=ON
93-
cmake --build . --config Release
94+
cmake --build . --config ${{ matrix.build_type }}
9495
9596
- name: Test
9697
id: cmake_test

0 commit comments

Comments
 (0)