Skip to content

Commit

Permalink
remove realpath from multicast test
Browse files Browse the repository at this point in the history
  • Loading branch information
p-avital committed Aug 25, 2023
1 parent 4ebace5 commit dbc382d
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
34 changes: 17 additions & 17 deletions .github/workflows/multicast.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion tests/multicast.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#

TESTBIN="$1"
TESTDIR=$(realpath $(dirname "$0"))
TESTDIR=$(dirname "$0")

if [ "$OSTYPE" = "msys" ]; then
TESTBIN="$TESTDIR/Debug/$TESTBIN.exe"
Expand Down

0 comments on commit dbc382d

Please sign in to comment.