Skip to content

Commit 33b0e82

Browse files
author
Lukas Alberto Belck
committed
fix: add installation of system libs for pymssql in CI workflow
Install `freetds-dev` (and build-essentials) so `pymssql` can compile against the FreeTDS headers.
1 parent 28caf49 commit 33b0e82

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

.github/workflows/main.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,10 @@ jobs:
7979
uses: actions/setup-python@v4
8080
with:
8181
python-version: ${{ matrix.python-version }}
82+
- name: Install system libs for pymssql
83+
run: |
84+
sudo apt-get update
85+
sudo apt-get install --yes build-essential freetds-dev freetds-bin
8286
- name: Install Project
8387
run: |
8488
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)