Skip to content

Commit 5b51e66

Browse files
committed
Check MySQL ODBC driver file exists
1 parent fa90fca commit 5b51e66

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/common_tests.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,11 @@ jobs:
127127
ls -l /opt/microsoft/msodbcsql17/lib64 || true
128128
echo '*** ls -l /usr/lib/x86_64-linux-gnu/odbc'
129129
ls -l /usr/lib/x86_64-linux-gnu/odbc || true
130+
if [ -f /usr/lib/x86_64-linux-gnu/odbc/libmyodbc8a.so ]; then
131+
echo 'File exists'
132+
else
133+
echo 'File does not exist'
134+
fi
130135
131136
- name: Check out repository code
132137
uses: actions/checkout@v3

0 commit comments

Comments
 (0)