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 7226483 commit e5c0c4eCopy full SHA for e5c0c4e
.github/workflows/server.yml
@@ -87,8 +87,22 @@ jobs:
87
exit 1
88
fi
89
90
+ - name: Build (no OpenMP)
91
+ id: cmake_build_no_openmp
92
+ if: ${{ matrix.sanitizer == 'THREAD' }}
93
+ run: |
94
+ cmake -B build \
95
+ -DLLAMA_NATIVE=OFF \
96
+ -DLLAMA_BUILD_SERVER=ON \
97
+ -DLLAMA_CURL=ON \
98
+ -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} \
99
+ -DLLAMA_SANITIZE_${{ matrix.sanitizer }}=ON \
100
+ -DLLAMA_OPENMP=OFF ;
101
+ cmake --build build --config ${{ matrix.build_type }} -j $(nproc) --target llama-server
102
+
103
- name: Build
104
id: cmake_build
105
+ if: ${{ matrix.sanitizer != 'THREAD' }}
106
run: |
107
cmake -B build \
108
-DLLAMA_NATIVE=OFF \
0 commit comments