Skip to content

Commit

Permalink
Workaround for github action issue when using std::mutex by removing …
Browse files Browse the repository at this point in the history
  • Loading branch information
fspindle committed Jun 10, 2024
1 parent 7c57604 commit 7f25066
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 4 additions & 2 deletions example/robot-simulator/afma6/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ foreach(cpp ${example_cpp})
endif()

# Add test
get_filename_component(target ${cpp} NAME_WE)
add_test(${target} ${target} -c ${OPTION_TO_DESACTIVE_DISPLAY})
# Workaround for github action issue when using std::mutex by removing the test
# See https://github.com/actions/runner-images/issues/10020
# get_filename_component(target ${cpp} NAME_WE)
# add_test(${target} ${target} -c ${OPTION_TO_DESACTIVE_DISPLAY})
endforeach()
6 changes: 4 additions & 2 deletions example/robot-simulator/viper850/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ foreach(cpp ${example_cpp})
endif()

# Add test
get_filename_component(target ${cpp} NAME_WE)
add_test(${target} ${target} -c ${OPTION_TO_DESACTIVE_DISPLAY})
# Workaround for github action issue when using std::mutex by removing the test
# See https://github.com/actions/runner-images/issues/10020
# get_filename_component(target ${cpp} NAME_WE)
# add_test(${target} ${target} -c ${OPTION_TO_DESACTIVE_DISPLAY})
endforeach()

0 comments on commit 7f25066

Please sign in to comment.