Skip to content

Commit 065166e

Browse files
committed
ci: Install unixodbc-dev on Ubuntu runners
Seems there has been a change in packages so this is no longer installed by default, so install it manually like we do on macOS.
1 parent 45ee1cf commit 065166e

2 files changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ jobs:
1919
uses: actions/setup-node@v4
2020
with:
2121
node-version: ${{ matrix.node-version }}
22+
- name: Install dependencies
23+
if: ${{ startsWith(matrix.os, 'ubuntu') }}
24+
run: sudo apt install -y unixodbc-dev
2225
- name: Install dependencies
2326
if: ${{ startsWith(matrix.os, 'macos') }}
2427
run: brew install unixodbc

.github/workflows/create-release.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ jobs:
2222
uses: actions/setup-node@v4
2323
with:
2424
node-version: ${{ matrix.node-version }}
25+
- name: Install dependencies
26+
if: ${{ startsWith(matrix.os, 'ubuntu') }}
27+
run: sudo apt install -y unixodbc-dev
2528
- name: Install Build Dependencies
2629
if: ${{ startsWith(matrix.os, 'macos') }}
2730
run: brew install unixodbc

0 commit comments

Comments
 (0)