Skip to content

Commit

Permalink
Merge pull request #1551 from robotology/traversaro-patch-9
Browse files Browse the repository at this point in the history
Short name of build directory from build to b in conda CI
  • Loading branch information
traversaro committed Nov 28, 2023
2 parents 9160da7 + 7b88de3 commit 2a19f4a
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,8 @@ jobs:
shell: bash -l {0}
run: |
set
mkdir -p build
cd build
mkdir -p b
cd b
cmake -G"${GHA_CMAKE_GENERATOR}" -C ${GITHUB_WORKSPACE}/.ci/initial-cache.gh.cmake -DYCM_EP_ADDITIONAL_CMAKE_ARGS:STRING="-DMatlab_ROOT_DIR:PATH=${GHA_Matlab_ROOT_DIR} -DMatlab_MEX_EXTENSION:STRING=${GHA_Matlab_MEX_EXTENSION}" -DROBOTOLOGY_USES_MATLAB:BOOL=ON -DNON_INTERACTIVE_BUILD:BOOL=TRUE -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} ${{ matrix.project_tags_cmake_options }} ..
# Disable options not tested on Conda for now
cmake -DROBOTOLOGY_USES_OCTAVE:BOOL=OFF .
Expand All @@ -134,7 +134,7 @@ jobs:
if: contains(matrix.os, 'windows-2019')
shell: bash -l {0}
run: |
cd build
cd b
cmake -DROBOTOLOGY_USES_MUJOCO:BOOL=OFF .
# For some reason, the Strawberry perl's pkg-config is found
Expand All @@ -148,7 +148,9 @@ jobs:
- name: Build [Conda]
shell: bash -l {0}
run: |
cd build
# Using b instead of build as a temporary workaround to https://github.com/robotology/robotology-superbuild/issues/1542#issuecomment-1827682957
# Go back to build once https://github.com/robotology/yarp/pull/3057 is merged and released
cd b
cmake --build . --config ${{ matrix.build_type }}
docker-build:
Expand Down

0 comments on commit 2a19f4a

Please sign in to comment.