Skip to content

Commit f28b75f

Browse files
committed
Check MySQL ODBC driver file exists - in extra job
1 parent 5b51e66 commit f28b75f

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/common_tests.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,15 @@ jobs:
155155
run: |
156156
pip install ${{ matrix.pip_install }}
157157
158+
- name: Check ODBC setup AGAIN
159+
if: matrix.py_db_module == 'pyodbc'
160+
run: |
161+
if [ -f /usr/lib/x86_64-linux-gnu/odbc/libmyodbc8a.so ]; then
162+
echo 'File exists'
163+
else
164+
echo 'File does not exist'
165+
fi
166+
158167
- name: Tests for ${{ matrix.job_name }}
159168
working-directory: ./test
160169
run: >-

0 commit comments

Comments
 (0)