Skip to content

Commit

Permalink
iox-#2 Fix build by installing dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: Simon Hoinkis <[email protected]>
  • Loading branch information
mossmaurice committed Jun 3, 2022
1 parent 6bd8cab commit 6c90bd4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,4 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: cmake -B build && cmake --build build

- run: sudo apt-get update && sudo apt-get install -y libacl1-dev libncurses5-dev bison && cmake -B build && cmake --build build
6 changes: 2 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,6 @@ if(ICEORYX_WITH_FETCH_CONTENT)
find_package(iceoryx_hoofs REQUIRED)
endif()

include(IceoryxPlatform)

if(ICEORYX_WITH_FETCH_CONTENT)
message("
#############################################################
Expand All @@ -70,13 +68,13 @@ endif()
project(example_automotive_soa)

include(GNUInstallDirs)
include(IceoryxPlatform)
include(IceoryxPackageHelper)

find_package(iceoryx_posh CONFIG REQUIRED)
find_package(iceoryx_hoofs CONFIG REQUIRED)

get_target_property(ICEORYX_CXX_STANDARD iceoryx_posh::iceoryx_posh CXX_STANDARD)
include(IceoryxPlatform)
include(IceoryxPackageHelper)

iox_add_executable(
TARGET iox-cpp-automotive-skeleton
Expand Down
2 changes: 1 addition & 1 deletion test/test_automotive_soa_binding.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,4 +94,4 @@ def test_skeleton_proxy_data_exchange(self, proc_output):
@ launch_testing.post_shutdown_test()
class TestAutomotiveSoaExampleExitCodes(unittest.TestCase):
def test_exit_code(self, proc_info):
launch_testing.asserts.assertExitCodes(proc_info)
launch_testing.asserts.assertExitCodes(proc_info)

0 comments on commit 6c90bd4

Please sign in to comment.