Skip to content

Commit

Permalink
rtabmap 0.21.3 (fixing qt plugin error on linux)
Browse files Browse the repository at this point in the history
  • Loading branch information
matlabbe committed Feb 16, 2024
1 parent 02d8617 commit 92887ec
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions Formula/r/rtabmap.rb
Expand Up @@ -25,8 +25,14 @@ def install

test do
# Test if main app is built and can be launched
output = shell_output("#{bin}/rtabmap --version")
assert_match "RTAB-Map: #{version}", output
on_linux do
# CI linux cannot start windows apps, causing qt plugins failing
output = shell_output("#{bin}/rtabmap-console --version")
assert_match "RTAB-Map: #{version}", output
else
output = shell_output("#{bin}/rtabmap --version")
assert_match "RTAB-Map: #{version}", output
end

# Test c++ library
ENV.delete "CPATH" # error xcode headers missing
Expand Down

0 comments on commit 92887ec

Please sign in to comment.