Skip to content

Commit

Permalink
removed some workarounds (now fixed) in conda-ci
Browse files Browse the repository at this point in the history
  • Loading branch information
randaz81 committed Aug 17, 2022
1 parent 950da42 commit 20737bc
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions .github/workflows/conda-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,6 @@ jobs:
if: contains(matrix.os, 'macos') || contains(matrix.os, 'ubuntu')
shell: bash -l {0}
run: |
# Workaround for https://github.com/RoboStack/ros-galactic/issues/39
unset DYLD_LIBRARY_PATH
cd ${GITHUB_WORKSPACE}
cd yarp
mkdir build
Expand All @@ -92,8 +90,6 @@ jobs:
if: contains(matrix.os, 'macos') || contains(matrix.os, 'ubuntu')
shell: bash -l {0}
run: |
# Workaround for https://github.com/RoboStack/ros-galactic/issues/39
unset DYLD_LIBRARY_PATH
mkdir -p build
cd build
# Python3_EXECUTABLE is set as a workaround for https://github.com/ros2/python_cmake_module/issues/6
Expand All @@ -113,26 +109,20 @@ jobs:
if: contains(matrix.os, 'macos') || contains(matrix.os, 'ubuntu')
shell: bash -l {0}
run: |
# Workaround for https://github.com/RoboStack/ros-galactic/issues/39
unset DYLD_LIBRARY_PATH
cd build
cmake --build . --config ${{ matrix.build_type }}
- name: Test [Linux&macOS]
if: contains(matrix.os, 'macos') || contains(matrix.os, 'ubuntu')
shell: bash -l {0}
run: |
# Workaround for https://github.com/RoboStack/ros-galactic/issues/39
unset DYLD_LIBRARY_PATH
cd build
ctest --output-on-failure -C ${{ matrix.build_type }}
- name: Install [Linux&macOS]
if: contains(matrix.os, 'macos') || contains(matrix.os, 'ubuntu')
shell: bash -l {0}
run: |
# Workaround for https://github.com/RoboStack/ros-galactic/issues/39
unset DYLD_LIBRARY_PATH
cd build
cmake --install . --config ${{ matrix.build_type }}
Expand Down

0 comments on commit 20737bc

Please sign in to comment.