Modify build workflow to disable static build and update Abseil library dependency
Some checks failed
Build / build (push) Has been cancelled

Change CMake configuration to build dynamic libraries and update the required Abseil library package to libabsl20220623t64
This commit is contained in:
2025-01-28 06:51:29 +00:00
parent eda1dcc4be
commit eb3c9ac653

View File

@@ -31,7 +31,7 @@ jobs:
- name: Configure the project
run: |
cd build
CC=clang CXX=clang++ cmake -DCMAKE_BUILD_TYPE=Release -DUSE_CLANG=ON -DBUILD_STATIC=ON ..
CC=clang CXX=clang++ cmake -DCMAKE_BUILD_TYPE=Release -DUSE_CLANG=ON -DBUILD_STATIC=OFF ..
- name: Build the project
run: |
@@ -45,7 +45,7 @@ jobs:
--pkgversion=${{ env.PKG_VERSION }} \
--pkgrelease=${{ env.PKG_RELEASE }} \
--maintainer="maintainer@example.com" \
--requires="libabsl-dev" \
--requires="libabsl20220623t64" \
--default \
--pakdir=. \
--backup=no \