Skip to content

Commit d9b156e

Browse files
committed
ci: minor changes in ways how things build or link
- appveyor: do not build the shared library (it is unusable yet), - azure-pipelines: make all binaries use the same library, - codeql: use the shared library.
1 parent 3edab89 commit d9b156e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ build_script:
5252
set CXXFLAGS=/Wv:19.29.30037
5353
5454
cmake -Wdev -G"%generator%" -A"%platform%" -S. -Bbuild -DCMAKE_CONFIGURATION_TYPES=Release
55-
-DBUILD_CRUNCH=ON -DBUILD_SHARED_LIBCRN=ON -DBUILD_EXAMPLES=ON
55+
-DBUILD_CRUNCH=ON -DBUILD_EXAMPLES=ON
5656
-DUSE_FAST_MATH=OFF
5757
5858
cmake --build build --config Release

.azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ steps:
123123
cmake_args+=(-DCMAKE_CXX_FLAGS="${COMPILER_FLAGS}")
124124
fi
125125
if [ -z "${SOURCE_DIR:-}" ]; then
126-
cmake_args+=(-DBUILD_CRUNCH=ON -DBUILD_SHARED_LIBCRN=ON -DBUILD_EXAMPLES=ON)
126+
cmake_args+=(-DBUILD_CRUNCH=ON -DBUILD_EXAMPLES=ON -DBUILD_SHARED_LIBS=ON)
127127
fi
128128
cmake_args+=(-DUSE_FAST_MATH=OFF)
129129
cmake -S"${SOURCE_DIR:-.}" -Bbuild "${cmake_args[@]}"

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
export CMAKE_BUILD_PARALLEL_LEVEL="$(nproc)"
7676
echo "${CMAKE_BUILD_PARALLEL_LEVEL}"
7777
cmake -Wdev -S. -Bbuild -GNinja -DCMAKE_BUILD_TYPE=Release \
78-
-DBUILD_CRUNCH=ON -DBUILD_SHARED_LIBCRN=ON -DBUILD_EXAMPLES=OFF
78+
-DBUILD_CRUNCH=ON -DBUILD_EXAMPLES=OFF -DBUILD_SHARED_LIBS=ON
7979
cmake --build build
8080
8181
- name: Perform CodeQL Analysis

0 commit comments

Comments
 (0)