This is an automated email from the ASF dual-hosted git repository. szaszm pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/nifi-minifi-cpp.git
commit 2060d13d84a58e435a181f423a17665aba791eed Author: Martin Zink <[email protected]> AuthorDate: Wed Mar 25 13:34:24 2026 +0100 MINIFICPP-2755 fix macOS CI failure change macos-15 to macos-14 (macos-15 has some intermittent issues, we should change back when we can) updated iODBC (while investigating but seemed worth keeping) Closes #2143 Signed-off-by: Marton Szasz <[email protected]> --- .github/workflows/ci.yml | 4 ++-- extensions/sql/CMakeLists.txt | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ca811cbfa..96595f786 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,8 +8,8 @@ env: CCACHE_DIR: ${{ GITHUB.WORKSPACE }}/.ccache jobs: macos_xcode: - name: "macOS 15 aarch64" - runs-on: macos-15 + name: "macOS 14 aarch64" + runs-on: macos-14 timeout-minutes: 240 env: MACOS_MINIFI_OPTIONS: >- diff --git a/extensions/sql/CMakeLists.txt b/extensions/sql/CMakeLists.txt index 3982458a4..b6801df7d 100644 --- a/extensions/sql/CMakeLists.txt +++ b/extensions/sql/CMakeLists.txt @@ -44,8 +44,8 @@ else() # Build project ExternalProject_Add( iodbc-external - URL "https://github.com/openlink/iODBC/archive/v3.52.14.tar.gz" - URL_HASH "SHA256=896d7e16b283cf9a6f5b5f46e8e9549aef21a11935726b0170987cd4c59d16db" + URL "https://github.com/openlink/iODBC/archive/v3.52.16.tar.gz" + URL_HASH "SHA256=a0cf0375b462f98c0081c2ceae5ef78276003e57cdf1eb86bd04508fb62a0660" BUILD_IN_SOURCE true SOURCE_DIR "${CMAKE_CURRENT_BINARY_DIR}/thirdparty/iodbc-src" PATCH_COMMAND "${IODBC_PC}"
