From 19544603610571296eac650f5497329083d16d6d Mon Sep 17 00:00:00 2001 From: Jose Cabral Date: Thu, 28 Nov 2024 07:09:00 +0100 Subject: [PATCH] disable powerlink in the ci --- .github/workflows/systemtests.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/systemtests.yml b/.github/workflows/systemtests.yml index 60be5000b..d162461da 100644 --- a/.github/workflows/systemtests.yml +++ b/.github/workflows/systemtests.yml @@ -23,10 +23,11 @@ jobs: echo "source-dir=$GITHUB_WORKSPACE" >> "$GITHUB_OUTPUT" echo "build-dir=$GITHUB_WORKSPACE/build" >> "$GITHUB_OUTPUT" - - name: Install lipcap-dev + # TODO: Enable this and the POWERLINK module back when the CI is fixed: see https://github.com/eclipse-4diac/4diac-forte/issues/287 + #- name: Install lipcap-dev # libpcap-dev is required for the POWERLINK module # TODO: Put this in 4diac-fortebuildcontainer - run: apt-get update && apt-get install -y libpcap-dev + # run: apt-get update && apt-get install -y libpcap-dev - name: Configure CMake run: > @@ -51,10 +52,10 @@ jobs: -DFORTE_MODULE_RT_Events=ON -DFORTE_MODULE_SIGNALPROCESSING=ON -DFORTE_MODULE_UTILS=ON - -DFORTE_MODULE_POWERLINK=ON -DFORTE_TESTS=ON -DFORTE_SYSTEM_TESTS=ON -DFORTE_TEST_SANITIZE=ON +# -DFORTE_MODULE_POWERLINK=ON - name: Build run: cmake --build ${{ steps.strings.outputs.build-dir }}