Skip to content

Commit a6386df

Browse files
committed
Add Windows CI with docs
Signed-off-by: Michael Dolan <[email protected]>
1 parent f75dca1 commit a6386df

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci_workflow.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,7 @@ jobs:
462462
runs-on: macos-13
463463
strategy:
464464
matrix:
465-
build: [1, 2, 3, 4]
465+
build: [1, 2, 3, 4, 5]
466466
include:
467467
- build: 5
468468
arch-type: "x86_64"
@@ -757,7 +757,7 @@ jobs:
757757
- build: 4
758758
build-type: Release
759759
build-shared: 'ON'
760-
build-docs: 'OFF'
760+
build-docs: 'ON'
761761
build-openfx: 'ON'
762762
use-simd: 'OFF'
763763
use-oiio: 'ON'

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ set -ex
66

77
DOXYGEN_VERSION="$1"
88

9-
if command -v doxygen >/dev/null; then
9+
if ! command -v doxygen >/dev/null; then
1010
if [ "$DOXYGEN_VERSION" == "latest" ]; then
1111
dnf install -y doxygen
1212
else

0 commit comments

Comments
 (0)