Switch to multimap based nfd_map due to compile time issues #198
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Server build and tests | |
name: Server | |
on: | |
workflow_dispatch: # allows manual triggering | |
push: | |
branches: | |
- master | |
paths: ['.github/workflows/server.yml', '**/CMakeLists.txt', '**/Makefile', '**/*.h', '**/*.hpp', '**/*.c', '**/*.cpp', '**/*.cu', '**/*.swift', '**/*.m', 'examples/server/tests/**.*'] | |
pull_request: | |
types: [opened, synchronize, reopened] | |
paths: ['.github/workflows/server.yml', '**/CMakeLists.txt', '**/Makefile', '**/*.h', '**/*.hpp', '**/*.c', '**/*.cpp', '**/*.cu', '**/*.swift', '**/*.m', 'examples/server/tests/**.*'] | |
jobs: | |
server: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
sanitizer: [ADDRESS, THREAD, UNDEFINED] | |
build_type: [Debug, Release] | |
include: | |
- build_type: Release | |
sanitizer: "" | |
exclude: | |
- build_type: Release | |
sanitizer: ADDRESS | |
- build_type: Release | |
sanitizer: THREAD | |
- build_type: Release | |
sanitizer: UNDEFINED | |
container: | |
image: ubuntu:latest | |
ports: | |
- 8888 | |
options: --cpus 4 | |
steps: | |
- name: Clone | |
id: checkout | |
uses: actions/checkout@v3 | |
- name: Dependencies | |
id: depends | |
run: | | |
apt-get update | |
apt-get -y install \ | |
build-essential \ | |
git \ | |
cmake \ | |
python3-pip \ | |
wget \ | |
psmisc | |
- name: Build | |
id: cmake_build | |
run: | | |
mkdir build | |
cd build | |
cmake .. \ | |
-DLLAMA_NATIVE=OFF \ | |
-DLLAMA_BUILD_SERVER=ON \ | |
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }} \ | |
-DLLAMA_SANITIZE_${{ matrix.sanitizer }}=ON ; | |
cmake --build . --config ${{ matrix.build_type }} -j $(nproc) --target server | |
- name: Tests dependencies | |
id: test_dependencies | |
run: | | |
pip install -r examples/server/tests/requirements.txt | |
- name: Download models | |
id: download_models | |
run: | | |
cd examples/server/tests | |
../../../scripts/hf.sh --repo ggml-org/models --file tinyllamas/stories260K.gguf | |
- name: Tests | |
id: server_integration_test | |
run: | | |
cd examples/server/tests | |
PORT=8888 ./tests.sh |