Skip to content

Commit a050cfa

Browse files
authored
Change exit code for missing executables to 78
1 parent 81881e4 commit a050cfa

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/1_run_interoperability_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,12 @@ jobs:
5858
# Check if publisher executable exists
5959
if ! ls $publisher_exe 1> /dev/null 2>&1; then
6060
echo "ERROR: Publisher executable not found: $publisher_exe"
61-
exit 1
61+
exit 78
6262
fi
6363
# Check if subscriber executable exists
6464
if ! ls $subscriber_exe 1> /dev/null 2>&1; then
6565
echo "ERROR: Subscriber executable not found: $subscriber_exe"
66-
exit 1
66+
exit 78
6767
fi
6868
if [[ "${subscriber_exe,,}" == *opendds* && "${publisher_exe,,}" == *connext_dds* ]]; then
6969
extra_args="--periodic-announcement 5000"

0 commit comments

Comments
 (0)