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 f75dca1 commit a6386dfCopy full SHA for a6386df
.github/workflows/ci_workflow.yml
@@ -462,7 +462,7 @@ jobs:
462
runs-on: macos-13
463
strategy:
464
matrix:
465
- build: [1, 2, 3, 4]
+ build: [1, 2, 3, 4, 5]
466
include:
467
- build: 5
468
arch-type: "x86_64"
@@ -757,7 +757,7 @@ jobs:
757
- build: 4
758
build-type: Release
759
build-shared: 'ON'
760
- build-docs: 'OFF'
+ build-docs: 'ON'
761
build-openfx: 'ON'
762
use-simd: 'OFF'
763
use-oiio: 'ON'
share/ci/scripts/linux/dnf/install_doxygen.sh
@@ -6,7 +6,7 @@ set -ex
6
7
DOXYGEN_VERSION="$1"
8
9
-if command -v doxygen >/dev/null; then
+if ! command -v doxygen >/dev/null; then
10
if [ "$DOXYGEN_VERSION" == "latest" ]; then
11
dnf install -y doxygen
12
else
0 commit comments