From 98d17badc6a5a2d23d06942cacf897b92d0796b2 Mon Sep 17 00:00:00 2001 From: Evan Miller Date: Tue, 14 May 2024 14:24:51 -0400 Subject: [PATCH] Install unixodbc on macos CI --- .github/workflows/build.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 05c9800..37a29c8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -54,7 +54,7 @@ jobs: glib: [ enable-glib, disable-glib ] steps: - name: Install packages - run: brew install bison gawk automake libtool + run: brew install bison gawk automake libtool unixodbc - uses: actions/checkout@v2 - name: Fetch test data run: | @@ -94,10 +94,8 @@ jobs: compiler: [ clang, gcc ] glib: [ enable-glib, disable-glib ] steps: - - name: Remove packages - run: brew unlink unixodbc - name: Install packages - run: brew install libiodbc bison gawk automake libtool + run: brew install bison gawk automake libtool libiodbc - name: Add path run: echo /usr/local/opt/libiodbc/bin >> $GITHUB_PATH - uses: actions/checkout@v2