mirror of
https://github.com/ggml-org/llama.cpp.git
synced 2026-06-09 07:16:44 +02:00
35a74c8fb9
* ci : skip release workflow on master when commit message contains [no release] Assisted-by: llama.cpp:local pi * ci : restrict sanitizer builds to x86_64 + fix build type the spark is apparently too slow for some reason * tests : fix undefined warning [no ci]
100 lines
2.7 KiB
YAML
100 lines
2.7 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_LOG_COLORS: 1
|
|
LLAMA_LOG_PREFIX: 1
|
|
LLAMA_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
|
|
|
|
#- name: ccache
|
|
# uses: ggml-org/ccache-action@v1.2.21
|
|
# with:
|
|
# key: ubuntu-latest-sanitizer-${{ matrix.sanitizer }}
|
|
# evict-old-files: 1d
|
|
# save: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
|
|
|
|
#- name: Dependencies
|
|
# id: depends
|
|
# run: |
|
|
# sudo apt-get update
|
|
# sudo apt-get install build-essential libssl-dev
|
|
|
|
# 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 != 'THREAD' }}
|
|
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
|