ci.yml: a bit more readable ci name

Instead of just "compile-and-test (ON)".
This commit is contained in:
Andrej730
2026-09-16 15:46:04 +05:00
parent ae2f27c3a1
commit 18ed33d05d
+2 -2
View File
@@ -46,7 +46,7 @@ jobs:
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
build_shared_libs: [ON, OFF] build_shared_libs: [shared, static]
env: env:
# Colored output for cmake. # Colored output for cmake.
CLICOLOR_FORCE: "1" CLICOLOR_FORCE: "1"
@@ -214,7 +214,7 @@ jobs:
-DPYTHON_INCLUDE_DIR:PATH=$(python -c "import sysconfig; print(sysconfig.get_path('include'))") \ -DPYTHON_INCLUDE_DIR:PATH=$(python -c "import sysconfig; print(sysconfig.get_path('include'))") \
-DUSE_MMAP=On \ -DUSE_MMAP=On \
-DUSE_CCACHE=ON \ -DUSE_CCACHE=ON \
-DBUILD_SHARED_LIBS=${{ matrix.build_shared_libs }} \ -DBUILD_SHARED_LIBS=${{ matrix.build_shared_libs == 'shared' && 'ON' || 'OFF' }} \
"-DSCHEMA_VERSIONS=2x3;4;4x3_add2" \ "-DSCHEMA_VERSIONS=2x3;4;4x3_add2" \
-DGLTF_SUPPORT=On \ -DGLTF_SUPPORT=On \
-DWITH_ROCKSDB=On \ -DWITH_ROCKSDB=On \