From dbf1a2560a765b2f4f3d8d1fd755be84a1817845 Mon Sep 17 00:00:00 2001 From: JesusPoderoso Date: Wed, 11 Sep 2024 12:44:29 +0200 Subject: [PATCH] Refs #21459: Fix documentation CI to run only in 'Release' mode Signed-off-by: JesusPoderoso --- .github/workflows/reusable-workflow.yml | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/.github/workflows/reusable-workflow.yml b/.github/workflows/reusable-workflow.yml index ed364f3e..e6d95e84 100644 --- a/.github/workflows/reusable-workflow.yml +++ b/.github/workflows/reusable-workflow.yml @@ -134,13 +134,6 @@ jobs: documentation: runs-on: ubuntu-24.04 - strategy: - fail-fast: false - matrix: - cmake_build_type: - - Release - - Debug - steps: - name: Sync repository uses: eProsima/eProsima-CI/external/checkout@v0 @@ -151,7 +144,7 @@ jobs: - name: Install Fast DDS dependencies uses: eProsima/eProsima-CI/multiplatform/install_fastdds_dependencies@v0 with: - cmake_build_type: ${{ matrix.cmake_build_type }} + cmake_build_type: 'Release' - name: Fetch Fast DDS Monitor repositories uses: eProsima/eProsima-CI/multiplatform/vcs_import@v0 @@ -181,7 +174,7 @@ jobs: uses: eProsima/eProsima-CI/multiplatform/colcon_build_test@v0 with: packages_names: fastdds_monitor - cmake_build_type: ${{ matrix.cmake_build_type }} + cmake_build_type: 'Release' cmake_args: '-DTHIRDPARTY=ON -DBUILD_DOCUMENTATION=ON -DBUILD_DOCUMENTATION_TESTS=ON' colcon_meta_file: ${{ github.workspace }}/src/fastdds_monitor/.github/workflows/configurations/Linux/colcon.meta workspace: ${{ github.workspace }}