From 57c3b81bb19d08c21721d2fa9c620a9ce5e88aeb Mon Sep 17 00:00:00 2001 From: Patrick Grimm Date: Mon, 21 Oct 2024 14:44:54 +0200 Subject: [PATCH] enable BACDL_ETHERNET test for macOS linux and windows (#822) --- .github/workflows/main.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8a4b9e32..e300aad8 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -67,6 +67,7 @@ jobs: # TODO: Add BACDL_BIP6=ON when it builds withous errors. cmake_options="$cmake_options -DBACDL_BIP=ON" + cmake_options="$cmake_options -DBACDL_ETHERNET=ON" cmake_options="$cmake_options -DBACNET_PROTOCOL_REVISION=24" if [[ "$RUNNER_OS" != "macOS" ]]; then @@ -77,10 +78,6 @@ jobs: if [[ "$RUNNER_OS" == "Linux" ]]; then # Apple nor Windows does not have port yet for this. cmake_options="$cmake_options -DBACDL_ARCNET=ON" - - # Currently Windows fails because of pcab.h not found. - # Apple does not have port yet for this. - cmake_options="$cmake_options -DBACDL_ETHERNET=ON" fi cmake $source_dir -DCMAKE_BUILD_TYPE=$BUILD_TYPE $cmake_options