From 18ed33d05de303b6403af54e6a12379e293f28c0 Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Wed, 16 Sep 2026 15:46:04 +0500 Subject: [PATCH] ci.yml: a bit more readable ci name Instead of just "compile-and-test (ON)". --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 33300778b4..1cb31a13bb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -46,7 +46,7 @@ jobs: strategy: fail-fast: false matrix: - build_shared_libs: [ON, OFF] + build_shared_libs: [shared, static] env: # Colored output for cmake. CLICOLOR_FORCE: "1" @@ -214,7 +214,7 @@ jobs: -DPYTHON_INCLUDE_DIR:PATH=$(python -c "import sysconfig; print(sysconfig.get_path('include'))") \ -DUSE_MMAP=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" \ -DGLTF_SUPPORT=On \ -DWITH_ROCKSDB=On \