2024-02-24 11:28:55 +00:00
|
|
|
# Server build and tests
|
|
|
|
name: Server
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch: # allows manual triggering
|
2024-03-03 08:35:23 +00:00
|
|
|
inputs:
|
|
|
|
slow_tests:
|
|
|
|
description: 'Run slow tests'
|
|
|
|
required: true
|
|
|
|
type: boolean
|
2024-02-24 11:28:55 +00:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
2024-02-26 08:56:10 +00:00
|
|
|
paths: ['.github/workflows/server.yml', '**/CMakeLists.txt', '**/Makefile', '**/*.h', '**/*.hpp', '**/*.c', '**/*.cpp', '**/*.cu', '**/*.swift', '**/*.m', 'examples/server/tests/**.*']
|
2024-02-24 11:28:55 +00:00
|
|
|
pull_request:
|
|
|
|
types: [opened, synchronize, reopened]
|
2024-02-26 08:56:10 +00:00
|
|
|
paths: ['.github/workflows/server.yml', '**/CMakeLists.txt', '**/Makefile', '**/*.h', '**/*.hpp', '**/*.c', '**/*.cpp', '**/*.cu', '**/*.swift', '**/*.m', 'examples/server/tests/**.*']
|
2024-03-02 21:00:14 +00:00
|
|
|
schedule:
|
2024-03-03 08:35:23 +00:00
|
|
|
- cron: '0 0 * * *'
|
2024-02-24 11:28:55 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
server:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2024-03-18 11:45:27 +00:00
|
|
|
# TODO: temporary disabled due to linux kernel issues
|
|
|
|
#sanitizer: [ADDRESS, THREAD, UNDEFINED]
|
|
|
|
sanitizer: [UNDEFINED]
|
2024-03-14 11:15:39 +00:00
|
|
|
build_type: [Debug]
|
2024-02-24 11:28:55 +00:00
|
|
|
include:
|
2024-02-26 08:56:10 +00:00
|
|
|
- build_type: Release
|
|
|
|
sanitizer: ""
|
2024-03-14 11:15:39 +00:00
|
|
|
disabled_on_pr: true
|
|
|
|
fail-fast: false # While -DLLAMA_SANITIZE_THREAD=ON is broken
|
2024-02-24 11:28:55 +00:00
|
|
|
|
|
|
|
container:
|
2024-02-26 08:56:10 +00:00
|
|
|
image: ubuntu:latest
|
2024-02-24 11:28:55 +00:00
|
|
|
ports:
|
|
|
|
- 8888
|
|
|
|
options: --cpus 4
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Clone
|
|
|
|
id: checkout
|
|
|
|
uses: actions/checkout@v3
|
2024-03-10 17:17:47 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2024-02-24 11:28:55 +00:00
|
|
|
|
|
|
|
- name: Dependencies
|
|
|
|
id: depends
|
|
|
|
run: |
|
|
|
|
apt-get update
|
|
|
|
apt-get -y install \
|
|
|
|
build-essential \
|
|
|
|
git \
|
|
|
|
cmake \
|
|
|
|
python3-pip \
|
|
|
|
wget \
|
2024-03-17 18:12:37 +00:00
|
|
|
language-pack-en \
|
|
|
|
libcurl4-openssl-dev
|
2024-02-24 11:28:55 +00:00
|
|
|
|
|
|
|
- name: Build
|
|
|
|
id: cmake_build
|
|
|
|
run: |
|
|
|
|
mkdir build
|
|
|
|
cd build
|
2024-02-26 08:56:10 +00:00
|
|
|
cmake .. \
|
|
|
|
-DLLAMA_NATIVE=OFF \
|
|
|
|
-DLLAMA_BUILD_SERVER=ON \
|
2024-03-17 18:12:37 +00:00
|
|
|
-DLLAMA_CURL=ON \
|
2024-02-26 08:56:10 +00:00
|
|
|
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }} \
|
2024-02-26 10:41:34 +00:00
|
|
|
-DLLAMA_SANITIZE_${{ matrix.sanitizer }}=ON ;
|
2024-02-24 11:28:55 +00:00
|
|
|
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
|
|
|
|
|
2024-03-02 21:00:14 +00:00
|
|
|
- name: Tests
|
|
|
|
id: server_integration_tests
|
2024-03-14 11:15:39 +00:00
|
|
|
if: ${{ !matrix.disabled_on_pr || !github.event.pull_request }}
|
2024-02-24 11:28:55 +00:00
|
|
|
run: |
|
|
|
|
cd examples/server/tests
|
2024-03-02 21:00:14 +00:00
|
|
|
PORT=8888 ./tests.sh
|
2024-02-24 11:28:55 +00:00
|
|
|
|
2024-03-02 21:00:14 +00:00
|
|
|
- name: Slow tests
|
|
|
|
id: server_integration_tests_slow
|
2024-03-14 11:15:39 +00:00
|
|
|
if: ${{ (github.event.schedule || github.event.inputs.slow_tests == 'true') && matrix.build_type == 'Release' }}
|
2024-02-24 11:28:55 +00:00
|
|
|
run: |
|
|
|
|
cd examples/server/tests
|
2024-03-02 21:00:14 +00:00
|
|
|
PORT=8888 ./tests.sh --stop --no-skipped --no-capture --tags slow
|
2024-03-10 17:17:47 +00:00
|
|
|
|
|
|
|
|
|
|
|
server-windows:
|
|
|
|
runs-on: windows-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Clone
|
|
|
|
id: checkout
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
2024-03-17 18:12:37 +00: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 17:17:47 +00:00
|
|
|
- name: Build
|
|
|
|
id: cmake_build
|
|
|
|
run: |
|
|
|
|
mkdir build
|
|
|
|
cd build
|
2024-03-17 18:12:37 +00:00
|
|
|
cmake .. -DLLAMA_CURL=ON -DCURL_LIBRARY="$env:RUNNER_TEMP/libcurl/lib/libcurl.dll.a" -DCURL_INCLUDE_DIR="$env:RUNNER_TEMP/libcurl/include"
|
2024-03-10 17:17:47 +00:00
|
|
|
cmake --build . --config Release -j ${env:NUMBER_OF_PROCESSORS} --target server
|
|
|
|
|
|
|
|
- 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 18:12:37 +00: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 17:17:47 +00:00
|
|
|
- name: Tests
|
|
|
|
id: server_integration_tests
|
2024-03-14 11:15:39 +00:00
|
|
|
if: ${{ !matrix.disabled_on_pr || !github.event.pull_request }}
|
2024-03-10 17:17:47 +00: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 11:15:39 +00:00
|
|
|
if: ${{ (github.event.schedule || github.event.inputs.slow_tests == 'true') && matrix.build_type == 'Release' }}
|
2024-03-10 17:17:47 +00:00
|
|
|
run: |
|
|
|
|
cd examples/server/tests
|
|
|
|
behave.exe --stop --no-skipped --no-capture --tags slow
|