Skip to content

Commit 4137e6f

Browse files
committed
CD: account for the fact that CMake doesn't support versions older than 3.5 anymore.
1 parent 48abd27 commit 4137e6f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
export DOXYGEN_RELEASE=Release_${{ env.DOXYGEN_VERSION }}
2828
wget https://github.com/doxygen/doxygen/archive/refs/tags/${DOXYGEN_RELEASE}.tar.gz -O - | tar -xz
2929
cd doxygen-${DOXYGEN_RELEASE}
30-
cmake -G Ninja -S . -B build -DCMAKE_BUILD_TYPE=Release
30+
cmake -G Ninja -S . -B build -DCMAKE_BUILD_TYPE=Release -DCMAKE_POLICY_VERSION_MINIMUM=3.5
3131
cmake --build build
3232
cd build/bin
3333
tar -cz doxygen -f ${{ github.workspace }}/doxygen.tar.gz

0 commit comments

Comments
 (0)