diff --git a/.github/workflows/reusable-ubuntu-ci.yml b/.github/workflows/reusable-ubuntu-ci.yml index 354cda6f13b..09f905d3f50 100644 --- a/.github/workflows/reusable-ubuntu-ci.yml +++ b/.github/workflows/reusable-ubuntu-ci.yml @@ -844,3 +844,15 @@ jobs: cmake_args_default: ${{ env.colcon-build-default-cmake-args }} cmake_build_type: ${{ matrix.cmake-build-type }} workspace: ${{ github.workspace }} + + - name: Clean workspace - No shared libs + run: | + cd ${{ github.workspace }} + rm -rf build install log + + - name: Vanilla colcon build + uses: eProsima/eProsima-CI/multiplatform/colcon_build@v0 + with: + cmake_args_default: ${{ env.colcon-build-default-cmake-args }} + cmake_build_type: ${{ matrix.cmake-build-type }} + workspace: ${{ github.workspace }}