Skip to content

Commit 54f1a88

Browse files
committed
Do not skip full cmake configuration if any of USE_DOCS and USE_SCOREBOARD is enabled
1 parent 756bc23 commit 54f1a88

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

.github/workflows/pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181
cmake -S . -B build -DUSE_SCOREBOARD=ON
8282
- name: CMake build
8383
run: |
84-
cmake --build build --parallel
84+
cmake --build build -t generate_scoreboard
8585
- name: Upload artifact
8686
uses: actions/upload-artifact@v4
8787
with:

CMakeLists.txt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,6 @@ message( STATUS "PPC step: Setup documentation generation" )
1919
include(cmake/sphinx.cmake)
2020
add_subdirectory(docs)
2121

22-
if( USE_SCOREBOARD OR USE_DOCS )
23-
return()
24-
endif()
25-
2622
############################ Configures #############################
2723

2824
message( STATUS "PPC step: First configures" )

0 commit comments

Comments
 (0)