We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe3d031 commit f75dca1Copy full SHA for f75dca1
.github/workflows/ci_workflow.yml
@@ -278,7 +278,7 @@ jobs:
278
- build: 5
279
build-type: Release
280
build-shared: 'ON'
281
- build-docs: 'ON'
+ build-docs: 'OFF'
282
build-openfx: 'ON'
283
use-simd: 'OFF'
284
use-oiio: 'OFF'
share/ci/scripts/linux/dnf/install_doxygen.sh
@@ -6,13 +6,10 @@ set -ex
6
7
DOXYGEN_VERSION="$1"
8
9
-if command -v dnf >/dev/null; then
+if command -v doxygen >/dev/null; then
10
if [ "$DOXYGEN_VERSION" == "latest" ]; then
11
dnf install -y doxygen
12
else
13
dnf install -y doxygen-${DOXYGEN_VERSION}
14
fi
15
-elif command -v doxygen >/dev/null; then
16
- # Get any working version...
17
- yum install -y doxygen
18
0 commit comments