2024-02-24 12:28:55 +01:00
|
|
|
# Server build and tests
|
|
|
|
name: Server
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch: # allows manual triggering
|
2024-03-03 09:35:23 +01:00
|
|
|
inputs:
|
2024-04-01 12:36:40 +02:00
|
|
|
sha:
|
|
|
|
description: 'Commit SHA1 to build'
|
|
|
|
required: false
|
|
|
|
type: string
|
2024-03-03 09:35:23 +01:00
|
|
|
slow_tests:
|
|
|
|
description: 'Run slow tests'
|
|
|
|
required: true
|
|
|
|
type: boolean
|
2024-02-24 12:28:55 +01:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
2024-04-01 12:36:40 +02:00
|
|
|
paths: ['.github/workflows/server.yml', '**/CMakeLists.txt', '**/Makefile', '**/*.h', '**/*.hpp', '**/*.c', '**/*.cpp', '**/*.cu', '**/*.swift', '**/*.m', 'examples/server/**.*']
|
2024-06-10 14:18:41 +02:00
|
|
|
pull_request:
|
2024-02-24 12:28:55 +01:00
|
|
|
types: [opened, synchronize, reopened]
|
2024-04-01 12:36:40 +02:00
|
|
|
paths: ['.github/workflows/server.yml', '**/CMakeLists.txt', '**/Makefile', '**/*.h', '**/*.hpp', '**/*.c', '**/*.cpp', '**/*.cu', '**/*.swift', '**/*.m', 'examples/server/**.*']
|
2024-02-24 12:28:55 +01:00
|
|
|
|
2024-03-22 18:15:06 +01:00
|
|
|
concurrency:
|
2024-04-26 09:26:59 +02:00
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.head_ref || github.run_id }}
|
2024-03-22 18:15:06 +01:00
|
|
|
cancel-in-progress: true
|
|
|
|
|
2024-02-24 12:28:55 +01:00
|
|
|
jobs:
|
|
|
|
server:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2024-05-18 17:55:54 +02:00
|
|
|
sanitizer: [ADDRESS, THREAD, UNDEFINED]
|
2024-05-20 14:10:03 +02:00
|
|
|
build_type: [RelWithDebInfo]
|
2024-02-24 12:28:55 +01:00
|
|
|
include:
|
2024-02-26 09:56:10 +01:00
|
|
|
- build_type: Release
|
|
|
|
sanitizer: ""
|
2024-03-14 12:15:39 +01:00
|
|
|
fail-fast: false # While -DLLAMA_SANITIZE_THREAD=ON is broken
|
2024-02-24 12:28:55 +01:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Dependencies
|
|
|
|
id: depends
|
|
|
|
run: |
|
2024-04-27 17:50:48 +02:00
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get -y install \
|
2024-02-24 12:28:55 +01:00
|
|
|
build-essential \
|
2024-04-01 12:36:40 +02:00
|
|
|
xxd \
|
2024-02-24 12:28:55 +01:00
|
|
|
git \
|
|
|
|
cmake \
|
2024-04-01 12:36:40 +02:00
|
|
|
curl \
|
2024-02-24 12:28:55 +01:00
|
|
|
wget \
|
2024-03-17 19:12:37 +01:00
|
|
|
language-pack-en \
|
|
|
|
libcurl4-openssl-dev
|
2024-02-24 12:28:55 +01:00
|
|
|
|
2024-04-01 12:36:40 +02:00
|
|
|
- name: Clone
|
|
|
|
id: checkout
|
2024-04-03 20:01:13 +02:00
|
|
|
uses: actions/checkout@v4
|
2024-04-01 12:36:40 +02:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
ref: ${{ github.event.inputs.sha || github.event.pull_request.head.sha || github.sha || github.head_ref || github.ref_name }}
|
|
|
|
|
2024-04-27 17:50:48 +02:00
|
|
|
- name: Python setup
|
|
|
|
id: setup_python
|
|
|
|
uses: actions/setup-python@v5
|
|
|
|
with:
|
|
|
|
python-version: '3.11'
|
|
|
|
|
|
|
|
- name: Tests dependencies
|
|
|
|
id: test_dependencies
|
|
|
|
run: |
|
|
|
|
pip install -r examples/server/tests/requirements.txt
|
|
|
|
|
2024-04-01 12:36:40 +02:00
|
|
|
- name: Verify server deps
|
|
|
|
id: verify_server_deps
|
|
|
|
run: |
|
|
|
|
git config --global --add safe.directory $(realpath .)
|
|
|
|
cd examples/server
|
|
|
|
git ls-files --others --modified
|
|
|
|
git status
|
|
|
|
./deps.sh
|
|
|
|
git status
|
|
|
|
not_ignored_files="$(git ls-files --others --modified)"
|
|
|
|
echo "Modified files: ${not_ignored_files}"
|
|
|
|
if [ -n "${not_ignored_files}" ]; then
|
|
|
|
echo "Repository is dirty or server deps are not built as expected"
|
|
|
|
echo "${not_ignored_files}"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2024-02-24 12:28:55 +01:00
|
|
|
- name: Build
|
|
|
|
id: cmake_build
|
|
|
|
run: |
|
2024-04-29 18:02:45 +02:00
|
|
|
cmake -B build \
|
2024-02-26 09:56:10 +01:00
|
|
|
-DLLAMA_NATIVE=OFF \
|
|
|
|
-DLLAMA_BUILD_SERVER=ON \
|
2024-03-17 19:12:37 +01:00
|
|
|
-DLLAMA_CURL=ON \
|
2024-02-26 09:56:10 +01:00
|
|
|
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }} \
|
2024-02-26 11:41:34 +01:00
|
|
|
-DLLAMA_SANITIZE_${{ matrix.sanitizer }}=ON ;
|
2024-06-13 01:41:52 +02:00
|
|
|
cmake --build build --config ${{ matrix.build_type }} -j $(nproc) --target llama-server
|
2024-02-24 12:28:55 +01:00
|
|
|
|
2024-03-02 22:00:14 +01:00
|
|
|
- name: Tests
|
|
|
|
id: server_integration_tests
|
2024-02-24 12:28:55 +01:00
|
|
|
run: |
|
|
|
|
cd examples/server/tests
|
2024-03-02 22:00:14 +01:00
|
|
|
PORT=8888 ./tests.sh
|
2024-02-24 12:28:55 +01:00
|
|
|
|
2024-03-02 22:00:14 +01:00
|
|
|
- name: Slow tests
|
|
|
|
id: server_integration_tests_slow
|
2024-03-14 12:15:39 +01:00
|
|
|
if: ${{ (github.event.schedule || github.event.inputs.slow_tests == 'true') && matrix.build_type == 'Release' }}
|
2024-02-24 12:28:55 +01:00
|
|
|
run: |
|
|
|
|
cd examples/server/tests
|
2024-03-02 22:00:14 +01:00
|
|
|
PORT=8888 ./tests.sh --stop --no-skipped --no-capture --tags slow
|
2024-03-10 18:17:47 +01:00
|
|
|
|
|
|
|
|
|
|
|
server-windows:
|
2024-06-10 14:18:41 +02:00
|
|
|
runs-on: windows-2019
|
2024-03-10 18:17:47 +01:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Clone
|
|
|
|
id: checkout
|
2024-04-03 20:01:13 +02:00
|
|
|
uses: actions/checkout@v4
|
2024-03-10 18:17:47 +01:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2024-04-27 17:50:48 +02:00
|
|
|
ref: ${{ github.event.inputs.sha || github.event.pull_request.head.sha || github.sha || github.head_ref || github.ref_name }}
|
2024-03-10 18:17:47 +01:00
|
|
|
|
2024-03-17 19:12:37 +01:00
|
|
|
- name: libCURL
|
|
|
|
id: get_libcurl
|
|
|
|
env:
|
|
|
|
CURL_VERSION: 8.6.0_6
|
|
|
|
run: |
|
|
|
|
curl.exe -o $env:RUNNER_TEMP/curl.zip -L "https://curl.se/windows/dl-${env:CURL_VERSION}/curl-${env:CURL_VERSION}-win64-mingw.zip"
|
|
|
|
mkdir $env:RUNNER_TEMP/libcurl
|
|
|
|
tar.exe -xvf $env:RUNNER_TEMP/curl.zip --strip-components=1 -C $env:RUNNER_TEMP/libcurl
|
|
|
|
|
2024-03-10 18:17:47 +01:00
|
|
|
- name: Build
|
|
|
|
id: cmake_build
|
|
|
|
run: |
|
2024-04-29 18:02:45 +02:00
|
|
|
cmake -B build -DLLAMA_CURL=ON -DCURL_LIBRARY="$env:RUNNER_TEMP/libcurl/lib/libcurl.dll.a" -DCURL_INCLUDE_DIR="$env:RUNNER_TEMP/libcurl/include"
|
2024-06-13 01:41:52 +02:00
|
|
|
cmake --build build --config Release -j ${env:NUMBER_OF_PROCESSORS} --target llama-server
|
2024-03-10 18:17:47 +01:00
|
|
|
|
|
|
|
- name: Python setup
|
|
|
|
id: setup_python
|
|
|
|
uses: actions/setup-python@v5
|
|
|
|
with:
|
|
|
|
python-version: '3.11'
|
|
|
|
|
|
|
|
- name: Tests dependencies
|
|
|
|
id: test_dependencies
|
|
|
|
run: |
|
|
|
|
pip install -r examples/server/tests/requirements.txt
|
|
|
|
|
2024-03-17 19:12:37 +01:00
|
|
|
- name: Copy Libcurl
|
|
|
|
id: prepare_libcurl
|
|
|
|
run: |
|
|
|
|
cp $env:RUNNER_TEMP/libcurl/bin/libcurl-x64.dll ./build/bin/Release/libcurl-x64.dll
|
|
|
|
|
2024-03-10 18:17:47 +01:00
|
|
|
- name: Tests
|
|
|
|
id: server_integration_tests
|
2024-03-14 12:15:39 +01:00
|
|
|
if: ${{ !matrix.disabled_on_pr || !github.event.pull_request }}
|
2024-03-10 18:17:47 +01:00
|
|
|
run: |
|
|
|
|
cd examples/server/tests
|
|
|
|
behave.exe --summary --stop --no-capture --exclude 'issues|wrong_usages|passkey' --tags llama.cpp
|
|
|
|
|
|
|
|
- name: Slow tests
|
|
|
|
id: server_integration_tests_slow
|
2024-03-14 12:15:39 +01:00
|
|
|
if: ${{ (github.event.schedule || github.event.inputs.slow_tests == 'true') && matrix.build_type == 'Release' }}
|
2024-03-10 18:17:47 +01:00
|
|
|
run: |
|
|
|
|
cd examples/server/tests
|
|
|
|
behave.exe --stop --no-skipped --no-capture --tags slow
|