Skip to content

Commit f75dca1

Browse files
committed
Turn off docs on CentOS-7 builds
Signed-off-by: Michael Dolan <[email protected]>
1 parent fe3d031 commit f75dca1

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

.github/workflows/ci_workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ jobs:
278278
- build: 5
279279
build-type: Release
280280
build-shared: 'ON'
281-
build-docs: 'ON'
281+
build-docs: 'OFF'
282282
build-openfx: 'ON'
283283
use-simd: 'OFF'
284284
use-oiio: 'OFF'

share/ci/scripts/linux/dnf/install_doxygen.sh

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,10 @@ set -ex
66

77
DOXYGEN_VERSION="$1"
88

9-
if command -v dnf >/dev/null; then
9+
if command -v doxygen >/dev/null; then
1010
if [ "$DOXYGEN_VERSION" == "latest" ]; then
1111
dnf install -y doxygen
1212
else
1313
dnf install -y doxygen-${DOXYGEN_VERSION}
1414
fi
15-
elif command -v doxygen >/dev/null; then
16-
# Get any working version...
17-
yum install -y doxygen
1815
fi

0 commit comments

Comments
 (0)