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:
|
|
|
|
sanitizer: [ADDRESS, THREAD, UNDEFINED]
|
|
|
|
build_type: [Debug, Release]
|
|
|
|
include:
|
2024-02-26 08:56:10 +00:00
|
|
|
- build_type: Release
|
|
|
|
sanitizer: ""
|
|
|
|
exclude:
|
|
|
|
- build_type: Release
|
|
|
|
sanitizer: ADDRESS
|
|
|
|
- build_type: Release
|
|
|
|
sanitizer: THREAD
|
|
|
|
- build_type: Release
|
|
|
|
sanitizer: UNDEFINED
|
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
|
|
|
|
|
|
|
|
- name: Dependencies
|
|
|
|
id: depends
|
|
|
|
run: |
|
|
|
|
apt-get update
|
|
|
|
apt-get -y install \
|
|
|
|
build-essential \
|
|
|
|
git \
|
|
|
|
cmake \
|
|
|
|
python3-pip \
|
|
|
|
wget \
|
2024-03-07 09:41:53 +00:00
|
|
|
psmisc \
|
|
|
|
language-pack-en
|
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 \
|
|
|
|
-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-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-03 08:35:23 +00:00
|
|
|
if: ${{ github.event.schedule != '' && matrix.build_type == 'Release' || github.event.inputs.slow_tests == 'true' }}
|
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
|