Skip to content

Commit

Permalink
[CI] Fix workflow failures related to compilation of docs
Browse files Browse the repository at this point in the history
  • Loading branch information
krivenko committed Nov 14, 2024
1 parent 4fe4696 commit a4b9252
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build-and-test-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ jobs:
env:
CXX: ${{ matrix.compiler.cxx }}
run: |
if [[ "${{ matrix.compiler.name }}" == clang* ]]; then
if [[ "${{ matrix.compiler.name }}" == clang* &&
"${{ matrix.install-libcommute }}" == true ]]; then
DOCS=ON
else
DOCS=OFF
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/build-and-test-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ jobs:
env:
CXX: ${{ matrix.compiler.cxx }}
run: |
if [[ "${{ matrix.compiler.name }}" == clang* ]]; then
if [[ "${{ matrix.compiler.name }}" == clang* &&
"${{ matrix.install-libcommute }}" == true ]]; then
DOCS=ON
else
DOCS=OFF
Expand Down

0 comments on commit a4b9252

Please sign in to comment.