Skip to content

Commit 83c6f15

Browse files
authored
Install ODBC in release GHA workflows (#317)
* Install ODBC in release GHA workflows * Fix action version in release-packages.yml * Remove windows changes
1 parent c801247 commit 83c6f15

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

.github/workflows/release-packages.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,9 @@ jobs:
102102
- name: Install tree-sitter-cli
103103
run: npm install -g tree-sitter-cli
104104

105+
- name: Install ODBC
106+
run: brew install unixodbc
107+
105108
- name: Install Rust toolchain
106109
uses: dtolnay/rust-toolchain@stable
107110
with:
@@ -188,7 +191,8 @@ jobs:
188191
libwebkit2gtk-4.1-dev \
189192
libappindicator3-dev \
190193
librsvg2-dev \
191-
patchelf
194+
patchelf \
195+
unixodbc-dev
192196
193197
- name: Install cargo-packager
194198
run: cargo install cargo-packager --locked
@@ -225,6 +229,9 @@ jobs:
225229
- name: Install tree-sitter-cli
226230
run: npm install -g tree-sitter-cli
227231

232+
- name: Install ODBC
233+
run: sudo apt-get install -y unixodbc-dev
234+
228235
- name: Install Rust toolchain
229236
uses: dtolnay/rust-toolchain@stable
230237

0 commit comments

Comments
 (0)