server: test: ci rename step name to Test, change matrix order for better clarity

This commit is contained in:
Pierrick HYMBERT 2024-02-23 13:44:37 +01:00
parent 2c8bf2407b
commit 777bdcf58f

View file

@ -18,9 +18,9 @@ jobs:
strategy: strategy:
matrix: matrix:
build: [noavx, avx2, avx, avx512, cublas, clblast, openblas, kompute, vulkan]
sanitizer: [ADDRESS, THREAD, UNDEFINED] sanitizer: [ADDRESS, THREAD, UNDEFINED]
build_type: [Debug, Release] build_type: [Debug, Release]
build: [noavx, avx2, avx, avx512, cublas, clblast, openblas, kompute, vulkan]
include: include:
- build: 'noavx' - build: 'noavx'
defines: '-DLLAMA_NATIVE=OFF -DLLAMA_BUILD_SERVER=ON -DLLAMA_AVX=OFF -DLLAMA_AVX2=OFF -DLLAMA_FMA=OFF' defines: '-DLLAMA_NATIVE=OFF -DLLAMA_BUILD_SERVER=ON -DLLAMA_AVX=OFF -DLLAMA_AVX2=OFF -DLLAMA_FMA=OFF'
@ -113,13 +113,13 @@ jobs:
run: | run: |
pip install -r examples/server/tests/requirements.txt pip install -r examples/server/tests/requirements.txt
- name: Download test model - name: Download models
id: download_model id: download_models
run: | run: |
cd examples/server/tests cd examples/server/tests
../../../scripts/hf.sh --repo ggml-org/models --file tinyllamas/stories260K.gguf ../../../scripts/hf.sh --repo ggml-org/models --file tinyllamas/stories260K.gguf
- name: Server Integration Tests - name: Tests
id: server_integration_test id: server_integration_test
continue-on-error: ${{ matrix.experimental || matrix.arch_not_available }} continue-on-error: ${{ matrix.experimental || matrix.arch_not_available }}
run: | run: |