mirror of
https://github.com/ggml-org/llama.cpp.git
synced 2026-06-26 14:20:21 +00:00
491c4d7d2e
* ci : separate CUDA windows workflow + fix names * ci : rename workflow * ci : prefix cache names with workflow name * ci : rename build.yml -> build-cpu.yml * ci : cache keys * ci : fix windows cuda/hip concurrency of release workflow * ci : fix apple cache names * ci : add TODOs * cont : keep just the last cache * ci : update release concurrency to queue * ci : move the release trigger to ubuntu-slim * ci : hip add TODO * cont : improve words Co-authored-by: Georgi Gerganov <ggerganov@gmail.com>
87 lines
2.3 KiB
YAML
87 lines
2.3 KiB
YAML
name: CI (sanitize)
|
|
|
|
on:
|
|
workflow_dispatch: # allows manual triggering
|
|
push:
|
|
branches:
|
|
- master
|
|
paths: [
|
|
'.github/workflows/build-sanitize.yml',
|
|
'**/CMakeLists.txt',
|
|
'**/.cmake',
|
|
'**/*.h',
|
|
'**/*.hpp',
|
|
'**/*.c',
|
|
'**/*.cpp'
|
|
]
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.head_ref && github.ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
env:
|
|
GGML_NLOOP: 3
|
|
GGML_N_THREADS: 1
|
|
LLAMA_ARG_LOG_COLORS: 1
|
|
LLAMA_ARG_LOG_PREFIX: 1
|
|
LLAMA_ARG_LOG_TIMESTAMPS: 1
|
|
|
|
jobs:
|
|
ctest:
|
|
runs-on: [self-hosted, X64, CPU, Linux]
|
|
|
|
continue-on-error: true
|
|
|
|
strategy:
|
|
matrix:
|
|
sanitizer: [ADDRESS, THREAD, UNDEFINED]
|
|
|
|
steps:
|
|
- name: Clone
|
|
id: checkout
|
|
uses: actions/checkout@v6
|
|
|
|
# with UNDEFINED sanitizer, we have to build in Debug to avoid GCC 13 false-positive warnings
|
|
- name: Build (undefined)
|
|
id: cmake_build_undefined
|
|
if: ${{ matrix.sanitizer == 'UNDEFINED' }}
|
|
run: |
|
|
cmake -B build \
|
|
-DCMAKE_BUILD_TYPE=Debug \
|
|
-DLLAMA_FATAL_WARNINGS=ON \
|
|
-DLLAMA_SANITIZE_${{ matrix.sanitizer }}=ON \
|
|
-DGGML_SANITIZE_${{ matrix.sanitizer }}=ON
|
|
|
|
cmake --build build --config Debug -j $(nproc)
|
|
|
|
- name: Build
|
|
id: cmake_build
|
|
if: ${{ matrix.sanitizer == 'ADDRESS' }}
|
|
run: |
|
|
cmake -B build \
|
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
|
-DLLAMA_SANITIZE_${{ matrix.sanitizer }}=ON \
|
|
-DGGML_SANITIZE_${{ matrix.sanitizer }}=ON
|
|
|
|
cmake --build build --config RelWithDebInfo -j $(nproc)
|
|
|
|
- name: Build (no OpenMP)
|
|
id: cmake_build_no_openmp
|
|
if: ${{ matrix.sanitizer == 'THREAD' }}
|
|
run: |
|
|
cmake -B build \
|
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
|
-DLLAMA_SANITIZE_${{ matrix.sanitizer }}=ON \
|
|
-DGGML_SANITIZE_${{ matrix.sanitizer }}=ON \
|
|
-DGGML_OPENMP=OFF
|
|
|
|
cmake --build build --config RelWithDebInfo -j $(nproc)
|
|
|
|
- name: Test
|
|
id: cmake_test
|
|
# skip run in Debug - very slow
|
|
if: ${{ matrix.sanitizer != 'UNDEFINED' }}
|
|
run: |
|
|
cd build
|
|
ctest -L main -E tokenizer --verbose --timeout 900
|