From dbc382d36ed6f4da0fc0549ffab8b33f9ef8d6f1 Mon Sep 17 00:00:00 2001 From: Pierre Avital Date: Fri, 25 Aug 2023 18:21:26 +0200 Subject: [PATCH] remove realpath from multicast test --- .github/workflows/multicast.yaml | 34 ++++++++++++++++---------------- tests/multicast.sh | 2 +- 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/.github/workflows/multicast.yaml b/.github/workflows/multicast.yaml index 3c3fd8179..63bc774a1 100644 --- a/.github/workflows/multicast.yaml +++ b/.github/workflows/multicast.yaml @@ -15,34 +15,34 @@ name: multicast on: push: - branches: [ '**' ] + branches: ["**"] pull_request: - branches: [ '**' ] + branches: ["**"] schedule: - - cron: '0 6 * * 1-5' + - cron: "0 6 * * 1-5" jobs: build: - name: Build on macOS-latest runs-on: macOS-latest strategy: fail-fast: false matrix: - os: [ macOS-latest ] + os: [macOS-latest] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v2 - - name: Compile debug - run: make all - env: - BUILD_TYPE: Debug - BUILD_TESTING: OFF - BUILD_MULTICAST: ON - BUILD_INTEGRATION: OFF + - name: Compile debug + run: make all + env: + BUILD_TYPE: Debug + BUILD_TESTING: OFF + BUILD_MULTICAST: ON + BUILD_INTEGRATION: OFF + ZENOH_BRANCH: new-protocol - - name: Test debug - run: make test - env: - ARGS: -V + - name: Test debug + run: make test + env: + ARGS: -V diff --git a/tests/multicast.sh b/tests/multicast.sh index e6094f52c..d03dcb1dc 100644 --- a/tests/multicast.sh +++ b/tests/multicast.sh @@ -14,7 +14,7 @@ # TESTBIN="$1" -TESTDIR=$(realpath $(dirname "$0")) +TESTDIR=$(dirname "$0") if [ "$OSTYPE" = "msys" ]; then TESTBIN="$TESTDIR/Debug/$TESTBIN.exe"