You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by GitBox <gi...@apache.org> on 2022/08/16 07:58:24 UTC

[GitHub] [arrow] kou opened a new pull request, #13892: ARROW-12175: [C++] Fix CMake packages

kou opened a new pull request, #13892:
URL: https://github.com/apache/arrow/pull/13892

   ARROW-9171 is also fixed.
   
   Our CMake packages are broken. For example, find_package(Parquet)
   doesn't work without specifying CMAKE_MODULE_PATH.
   
   find_package(${PACKAGE}) searches
   ${PREFIX}/${PACKAGE}/${PACKAGE}Config.cmake or
   ${PREFIX}/${PACKAGE}/Find${PACKAGE}.cmake. But our .cmake files are
   always installed ${PREFIX}/arrow/. So find_package(Parquet) can't find
   ${PREFIX}/arrow/FindParquet.cmake because "/arrow/" isn't
   "/${PACKAGE}".
   
   This change fixes this by installing ${PACKAGE}Config.cmake to
   ${PREFIX}/${PACKAGE}/ instead of ${PREFIX}/arrow/.
   
   This also removes all Find${PACKAGE}.cmake. We only provides
   ${PACKAGE}Config.cmake. Our Find${PACKAGE}.cmake can find ${PACKAGE}
   by CMake, pkg-config or manual .so/.h search. But we don't need to
   support pkg-config nor manual .so/.h search. We can use
   ${PACKAGE}Config.cmake to support CMake package search. So this
   removes all Find${PACKAGE}.cmake.
   
   This also introduces namespace to our CMake targets. For example,
   arrow_shared is exported as Arrow::arrow_shared and parquet_static is
   exported as Parquet::parquet_static. But no namespace targets such as
   arrow_shared and parquet_static are still also exported for keeping
   backward compatibility. But this requires CMake 3.11 or later for
   users because we can't use add_library(IMPORTED) is available since
   CMake 3.11.
   
   (Plasma::plasma-store-server target is also added for
   plasma-store-server executable.)
   
   FYI: We can resolve this problem by using COMPONENTS feature of
   find_package(). For example, find_package(Arrow COMPONENTS Parquet) is
   used instead of find_package(Parquet). With COMPONENTS, ${PACKAGE} is
   always "Arrow". So we can still install our .cmake files to
   ${PREFIX}/arrow/. But this approach breaks backward compatibility. So
   I choose ${PREFIX}/${PACKAGE}/*.cmake approach.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] kou commented on pull request #13892: ARROW-12175: [C++] Fix CMake packages

Posted by GitBox <gi...@apache.org>.
kou commented on PR #13892:
URL: https://github.com/apache/arrow/pull/13892#issuecomment-1226875506

   @github-actions crossbow submit -g nightly-tests -g nightly-packaging -g nightly-release


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] jorisvandenbossche commented on a diff in pull request #13892: ARROW-12175: [C++] Fix CMake packages

Posted by GitBox <gi...@apache.org>.
jorisvandenbossche commented on code in PR #13892:
URL: https://github.com/apache/arrow/pull/13892#discussion_r963587046


##########
cpp/cmake_modules/FindArrow.cmake:
##########
@@ -1,466 +0,0 @@
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-#   http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-# KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-
-# - Find Arrow (arrow/api.h, libarrow.a, libarrow.so)
-# This module defines
-#  ARROW_FOUND, whether Arrow has been found
-#  ARROW_FULL_SO_VERSION, full shared object version of found Arrow "100.0.0"
-#  ARROW_IMPORT_LIB, path to libarrow's import library (Windows only)
-#  ARROW_INCLUDE_DIR, directory containing headers
-#  ARROW_LIBS, deprecated. Use ARROW_LIB_DIR instead
-#  ARROW_LIB_DIR, directory containing Arrow libraries
-#  ARROW_SHARED_IMP_LIB, deprecated. Use ARROW_IMPORT_LIB instead
-#  ARROW_SHARED_LIB, path to libarrow's shared library
-#  ARROW_SO_VERSION, shared object version of found Arrow such as "100"
-#  ARROW_STATIC_LIB, path to libarrow.a
-#  ARROW_VERSION, version of found Arrow
-#  ARROW_VERSION_MAJOR, major version of found Arrow
-#  ARROW_VERSION_MINOR, minor version of found Arrow
-#  ARROW_VERSION_PATCH, patch version of found Arrow
-
-if(DEFINED ARROW_FOUND)
-  return()
-endif()
-
-find_package(PkgConfig)
-include(FindPackageHandleStandardArgs)
-
-if(WIN32 AND NOT MINGW)
-  # This is used to handle builds using e.g. clang in an MSVC setting.
-  set(MSVC_TOOLCHAIN TRUE)
-else()
-  set(MSVC_TOOLCHAIN FALSE)
-endif()
-
-set(ARROW_SEARCH_LIB_PATH_SUFFIXES)
-if(CMAKE_LIBRARY_ARCHITECTURE)
-  list(APPEND ARROW_SEARCH_LIB_PATH_SUFFIXES "lib/${CMAKE_LIBRARY_ARCHITECTURE}")
-endif()
-list(APPEND
-     ARROW_SEARCH_LIB_PATH_SUFFIXES
-     "lib64"
-     "lib32"
-     "lib"
-     "bin")
-set(ARROW_CONFIG_SUFFIXES
-    "_RELEASE"
-    "_RELWITHDEBINFO"
-    "_MINSIZEREL"
-    "_DEBUG"
-    "")
-if(CMAKE_BUILD_TYPE)
-  string(TOUPPER ${CMAKE_BUILD_TYPE} ARROW_CONFIG_SUFFIX_PREFERRED)
-  set(ARROW_CONFIG_SUFFIX_PREFERRED "_${ARROW_CONFIG_SUFFIX_PREFERRED}")
-  list(INSERT ARROW_CONFIG_SUFFIXES 0 "${ARROW_CONFIG_SUFFIX_PREFERRED}")
-endif()
-
-if(NOT DEFINED ARROW_MSVC_STATIC_LIB_SUFFIX)
-  if(MSVC_TOOLCHAIN)
-    set(ARROW_MSVC_STATIC_LIB_SUFFIX "_static")
-  else()
-    set(ARROW_MSVC_STATIC_LIB_SUFFIX "")
-  endif()
-endif()
-
-# Internal function.
-#
-# Set shared library name for ${base_name} to ${output_variable}.
-#
-# Example:
-#   arrow_build_shared_library_name(ARROW_SHARED_LIBRARY_NAME arrow)
-#   # -> ARROW_SHARED_LIBRARY_NAME=libarrow.so on Linux
-#   # -> ARROW_SHARED_LIBRARY_NAME=libarrow.dylib on macOS
-#   # -> ARROW_SHARED_LIBRARY_NAME=arrow.dll with MSVC on Windows
-#   # -> ARROW_SHARED_LIBRARY_NAME=libarrow.dll with MinGW on Windows
-function(arrow_build_shared_library_name output_variable base_name)
-  set(${output_variable}
-      "${CMAKE_SHARED_LIBRARY_PREFIX}${base_name}${CMAKE_SHARED_LIBRARY_SUFFIX}"
-      PARENT_SCOPE)
-endfunction()
-
-# Internal function.
-#
-# Set import library name for ${base_name} to ${output_variable}.
-# This is useful only for MSVC build. Import library is used only
-# with MSVC build.
-#
-# Example:
-#   arrow_build_import_library_name(ARROW_IMPORT_LIBRARY_NAME arrow)
-#   # -> ARROW_IMPORT_LIBRARY_NAME=arrow on Linux (meaningless)
-#   # -> ARROW_IMPORT_LIBRARY_NAME=arrow on macOS (meaningless)
-#   # -> ARROW_IMPORT_LIBRARY_NAME=arrow.lib with MSVC on Windows
-#   # -> ARROW_IMPORT_LIBRARY_NAME=libarrow.dll.a with MinGW on Windows
-function(arrow_build_import_library_name output_variable base_name)
-  set(${output_variable}
-      "${CMAKE_IMPORT_LIBRARY_PREFIX}${base_name}${CMAKE_IMPORT_LIBRARY_SUFFIX}"
-      PARENT_SCOPE)
-endfunction()
-
-# Internal function.
-#
-# Set static library name for ${base_name} to ${output_variable}.
-#
-# Example:
-#   arrow_build_static_library_name(ARROW_STATIC_LIBRARY_NAME arrow)
-#   # -> ARROW_STATIC_LIBRARY_NAME=libarrow.a on Linux
-#   # -> ARROW_STATIC_LIBRARY_NAME=libarrow.a on macOS
-#   # -> ARROW_STATIC_LIBRARY_NAME=arrow.lib with MSVC on Windows
-#   # -> ARROW_STATIC_LIBRARY_NAME=libarrow.dll.a with MinGW on Windows
-function(arrow_build_static_library_name output_variable base_name)
-  set(${output_variable}
-      "${CMAKE_STATIC_LIBRARY_PREFIX}${base_name}${ARROW_MSVC_STATIC_LIB_SUFFIX}${CMAKE_STATIC_LIBRARY_SUFFIX}"
-      PARENT_SCOPE)
-endfunction()
-
-# Internal function.
-#
-# Set macro value for ${macro_name} in ${header_content} to ${output_variable}.
-#
-# Example:
-#   arrow_extract_macro_value(version_major
-#                             "ARROW_VERSION_MAJOR"
-#                             "#define ARROW_VERSION_MAJOR 1.0.0")
-#   # -> version_major=1.0.0
-function(arrow_extract_macro_value output_variable macro_name header_content)
-  string(REGEX MATCH "#define +${macro_name} +[^\r\n]+" macro_definition
-               "${header_content}")
-  string(REGEX REPLACE "^#define +${macro_name} +(.+)$" "\\1" macro_value
-                       "${macro_definition}")
-  set(${output_variable}
-      "${macro_value}"
-      PARENT_SCOPE)
-endfunction()
-
-# Internal macro only for arrow_find_package.
-#
-# Find package in HOME.
-macro(arrow_find_package_home)
-  find_path(${prefix}_include_dir "${header_path}"
-            PATHS "${home}"
-            PATH_SUFFIXES "include"
-            NO_DEFAULT_PATH)
-  set(include_dir "${${prefix}_include_dir}")
-  set(${prefix}_INCLUDE_DIR
-      "${include_dir}"
-      PARENT_SCOPE)
-
-  if(MSVC_TOOLCHAIN)
-    set(CMAKE_SHARED_LIBRARY_SUFFIXES_ORIGINAL ${CMAKE_FIND_LIBRARY_SUFFIXES})
-    # .dll isn't found by find_library with MSVC because .dll isn't included in
-    # CMAKE_FIND_LIBRARY_SUFFIXES.
-    list(APPEND CMAKE_FIND_LIBRARY_SUFFIXES "${CMAKE_SHARED_LIBRARY_SUFFIX}")
-  endif()
-  find_library(${prefix}_shared_lib
-               NAMES "${shared_lib_name}"
-               PATHS "${home}"
-               PATH_SUFFIXES ${ARROW_SEARCH_LIB_PATH_SUFFIXES}
-               NO_DEFAULT_PATH)
-  if(MSVC_TOOLCHAIN)
-    set(CMAKE_SHARED_LIBRARY_SUFFIXES ${CMAKE_FIND_LIBRARY_SUFFIXES_ORIGINAL})
-  endif()
-  set(shared_lib "${${prefix}_shared_lib}")
-  set(${prefix}_SHARED_LIB
-      "${shared_lib}"
-      PARENT_SCOPE)
-  if(shared_lib)
-    add_library(${target_shared} SHARED IMPORTED)
-    set_target_properties(${target_shared} PROPERTIES IMPORTED_LOCATION "${shared_lib}")
-    if(include_dir)
-      set_target_properties(${target_shared} PROPERTIES INTERFACE_INCLUDE_DIRECTORIES
-                                                        "${include_dir}")
-    endif()
-    find_library(${prefix}_import_lib
-                 NAMES "${import_lib_name}"
-                 PATHS "${home}"
-                 PATH_SUFFIXES ${ARROW_SEARCH_LIB_PATH_SUFFIXES}
-                 NO_DEFAULT_PATH)
-    set(import_lib "${${prefix}_import_lib}")
-    set(${prefix}_IMPORT_LIB
-        "${import_lib}"
-        PARENT_SCOPE)
-    if(import_lib)
-      set_target_properties(${target_shared} PROPERTIES IMPORTED_IMPLIB "${import_lib}")
-    endif()
-  endif()
-
-  find_library(${prefix}_static_lib
-               NAMES "${static_lib_name}"
-               PATHS "${home}"
-               PATH_SUFFIXES ${ARROW_SEARCH_LIB_PATH_SUFFIXES}
-               NO_DEFAULT_PATH)
-  set(static_lib "${${prefix}_static_lib}")
-  set(${prefix}_STATIC_LIB
-      "${static_lib}"
-      PARENT_SCOPE)
-  if(static_lib)
-    add_library(${target_static} STATIC IMPORTED)
-    set_target_properties(${target_static} PROPERTIES IMPORTED_LOCATION "${static_lib}")
-    if(include_dir)
-      set_target_properties(${target_static} PROPERTIES INTERFACE_INCLUDE_DIRECTORIES
-                                                        "${include_dir}")
-    endif()
-  endif()
-endmacro()
-
-# Internal macro only for arrow_find_package.
-#
-# Find package by CMake package configuration.
-macro(arrow_find_package_cmake_package_configuration)
-  find_package(${cmake_package_name} CONFIG)
-  if(${cmake_package_name}_FOUND)
-    set(${prefix}_USE_CMAKE_PACKAGE_CONFIG
-        TRUE
-        PARENT_SCOPE)
-    if(TARGET ${target_shared})
-      foreach(suffix ${ARROW_CONFIG_SUFFIXES})
-        get_target_property(shared_lib ${target_shared} IMPORTED_LOCATION${suffix})
-        if(shared_lib)
-          # Remove shared library version:
-          #   libarrow.so.100.0.0 -> libarrow.so
-          # Because ARROW_HOME and pkg-config approaches don't add
-          # shared library version.
-          string(REGEX REPLACE "(${CMAKE_SHARED_LIBRARY_SUFFIX})[.0-9]+$" "\\1"
-                               shared_lib "${shared_lib}")
-          set(${prefix}_SHARED_LIB
-              "${shared_lib}"
-              PARENT_SCOPE)
-          break()
-        endif()
-      endforeach()
-    endif()
-    if(TARGET ${target_static})
-      foreach(suffix ${ARROW_CONFIG_SUFFIXES})
-        get_target_property(static_lib ${target_static} IMPORTED_LOCATION${suffix})
-        if(static_lib)
-          set(${prefix}_STATIC_LIB
-              "${static_lib}"
-              PARENT_SCOPE)
-          break()
-        endif()
-      endforeach()
-    endif()
-  endif()
-endmacro()
-
-# Internal macro only for arrow_find_package.
-#
-# Find package by pkg-config.
-macro(arrow_find_package_pkg_config)
-  pkg_check_modules(${prefix}_PC ${pkg_config_name})
-  if(${prefix}_PC_FOUND)
-    set(${prefix}_USE_PKG_CONFIG
-        TRUE
-        PARENT_SCOPE)
-
-    set(include_dir "${${prefix}_PC_INCLUDEDIR}")
-    set(lib_dir "${${prefix}_PC_LIBDIR}")
-    set(shared_lib_paths "${${prefix}_PC_LINK_LIBRARIES}")
-    # Use the first shared library path as the IMPORTED_LOCATION
-    # for ${target_shared}. This assumes that the first shared library
-    # path is the shared library path for this module.
-    list(GET shared_lib_paths 0 first_shared_lib_path)
-    # Use the rest shared library paths as the INTERFACE_LINK_LIBRARIES
-    # for ${target_shared}. This assumes that the rest shared library
-    # paths are dependency library paths for this module.
-    list(LENGTH shared_lib_paths n_shared_lib_paths)
-    if(n_shared_lib_paths LESS_EQUAL 1)
-      set(rest_shared_lib_paths)
-    else()
-      list(SUBLIST
-           shared_lib_paths
-           1
-           -1
-           rest_shared_lib_paths)
-    endif()
-
-    set(${prefix}_VERSION
-        "${${prefix}_PC_VERSION}"
-        PARENT_SCOPE)
-    set(${prefix}_INCLUDE_DIR
-        "${include_dir}"
-        PARENT_SCOPE)
-    set(${prefix}_SHARED_LIB
-        "${first_shared_lib_path}"
-        PARENT_SCOPE)
-
-    add_library(${target_shared} SHARED IMPORTED)
-    set_target_properties(${target_shared}
-                          PROPERTIES INTERFACE_INCLUDE_DIRECTORIES "${include_dir}"
-                                     INTERFACE_LINK_LIBRARIES "${rest_shared_lib_paths}"
-                                     IMPORTED_LOCATION "${first_shared_lib_path}")
-    get_target_property(shared_lib ${target_shared} IMPORTED_LOCATION)
-
-    find_library(${prefix}_static_lib
-                 NAMES "${static_lib_name}"
-                 PATHS "${lib_dir}"
-                 NO_DEFAULT_PATH)
-    set(static_lib "${${prefix}_static_lib}")
-    set(${prefix}_STATIC_LIB
-        "${static_lib}"
-        PARENT_SCOPE)
-    if(static_lib)
-      add_library(${target_static} STATIC IMPORTED)
-      set_target_properties(${target_static}
-                            PROPERTIES INTERFACE_INCLUDE_DIRECTORIES "${include_dir}"
-                                       IMPORTED_LOCATION "${static_lib}")
-    endif()
-  endif()
-endmacro()
-
-function(arrow_find_package
-         prefix
-         home
-         base_name
-         header_path
-         cmake_package_name
-         pkg_config_name)
-  arrow_build_shared_library_name(shared_lib_name ${base_name})
-  arrow_build_import_library_name(import_lib_name ${base_name})
-  arrow_build_static_library_name(static_lib_name ${base_name})
-
-  set(target_shared ${base_name}_shared)
-  set(target_static ${base_name}_static)
-
-  if(home)
-    arrow_find_package_home()
-    set(${prefix}_FIND_APPROACH
-        "HOME: ${home}"
-        PARENT_SCOPE)
-  else()
-    arrow_find_package_cmake_package_configuration()
-    if(${cmake_package_name}_FOUND)
-      set(${prefix}_FIND_APPROACH
-          "CMake package configuration: ${cmake_package_name}"
-          PARENT_SCOPE)
-    else()
-      arrow_find_package_pkg_config()
-      set(${prefix}_FIND_APPROACH
-          "pkg-config: ${pkg_config_name}"
-          PARENT_SCOPE)
-    endif()
-  endif()
-
-  if(NOT include_dir)
-    if(TARGET ${target_shared})
-      get_target_property(include_dir ${target_shared} INTERFACE_INCLUDE_DIRECTORIES)
-    elseif(TARGET ${target_static})
-      get_target_property(include_dir ${target_static} INTERFACE_INCLUDE_DIRECTORIES)
-    endif()
-  endif()
-  if(include_dir)
-    set(${prefix}_INCLUDE_DIR
-        "${include_dir}"
-        PARENT_SCOPE)
-  endif()
-
-  if(shared_lib)
-    get_filename_component(lib_dir "${shared_lib}" DIRECTORY)
-  elseif(static_lib)
-    get_filename_component(lib_dir "${static_lib}" DIRECTORY)
-  else()
-    set(lib_dir NOTFOUND)
-  endif()
-  set(${prefix}_LIB_DIR
-      "${lib_dir}"
-      PARENT_SCOPE)
-  # For backward compatibility
-  set(${prefix}_LIBS
-      "${lib_dir}"
-      PARENT_SCOPE)
-endfunction()
-
-if(NOT "$ENV{ARROW_HOME}" STREQUAL "")
-  file(TO_CMAKE_PATH "$ENV{ARROW_HOME}" ARROW_HOME)
-endif()
-arrow_find_package(ARROW
-                   "${ARROW_HOME}"
-                   arrow
-                   arrow/api.h
-                   Arrow
-                   arrow)
-
-if(ARROW_HOME)
-  if(ARROW_INCLUDE_DIR)
-    file(READ "${ARROW_INCLUDE_DIR}/arrow/util/config.h" ARROW_CONFIG_H_CONTENT)
-    arrow_extract_macro_value(ARROW_VERSION_MAJOR "ARROW_VERSION_MAJOR"
-                              "${ARROW_CONFIG_H_CONTENT}")
-    arrow_extract_macro_value(ARROW_VERSION_MINOR "ARROW_VERSION_MINOR"
-                              "${ARROW_CONFIG_H_CONTENT}")
-    arrow_extract_macro_value(ARROW_VERSION_PATCH "ARROW_VERSION_PATCH"
-                              "${ARROW_CONFIG_H_CONTENT}")
-    if("${ARROW_VERSION_MAJOR}" STREQUAL ""
-       OR "${ARROW_VERSION_MINOR}" STREQUAL ""
-       OR "${ARROW_VERSION_PATCH}" STREQUAL "")
-      set(ARROW_VERSION "0.0.0")
-    else()
-      set(ARROW_VERSION
-          "${ARROW_VERSION_MAJOR}.${ARROW_VERSION_MINOR}.${ARROW_VERSION_PATCH}")
-    endif()
-
-    arrow_extract_macro_value(ARROW_SO_VERSION_QUOTED "ARROW_SO_VERSION"
-                              "${ARROW_CONFIG_H_CONTENT}")
-    string(REGEX REPLACE "^\"(.+)\"$" "\\1" ARROW_SO_VERSION "${ARROW_SO_VERSION_QUOTED}")
-    arrow_extract_macro_value(ARROW_FULL_SO_VERSION_QUOTED "ARROW_FULL_SO_VERSION"
-                              "${ARROW_CONFIG_H_CONTENT}")
-    string(REGEX REPLACE "^\"(.+)\"$" "\\1" ARROW_FULL_SO_VERSION
-                         "${ARROW_FULL_SO_VERSION_QUOTED}")
-  endif()
-else()
-  if(ARROW_USE_CMAKE_PACKAGE_CONFIG)
-    find_package(Arrow CONFIG)
-  elseif(ARROW_USE_PKG_CONFIG)
-    pkg_get_variable(ARROW_SO_VERSION arrow so_version)
-    pkg_get_variable(ARROW_FULL_SO_VERSION arrow full_so_version)
-  endif()
-endif()
-
-set(ARROW_ABI_VERSION ${ARROW_SO_VERSION})
-
-mark_as_advanced(ARROW_ABI_VERSION
-                 ARROW_CONFIG_SUFFIXES
-                 ARROW_FULL_SO_VERSION
-                 ARROW_IMPORT_LIB
-                 ARROW_INCLUDE_DIR
-                 ARROW_LIBS
-                 ARROW_LIB_DIR
-                 ARROW_SEARCH_LIB_PATH_SUFFIXES
-                 ARROW_SHARED_IMP_LIB
-                 ARROW_SHARED_LIB
-                 ARROW_SO_VERSION
-                 ARROW_STATIC_LIB
-                 ARROW_VERSION
-                 ARROW_VERSION_MAJOR
-                 ARROW_VERSION_MINOR
-                 ARROW_VERSION_PATCH)
-
-find_package_handle_standard_args(
-  Arrow
-  REQUIRED_VARS # The first required variable is shown
-                # in the found message. So this list is
-                # not sorted alphabetically.
-                ARROW_INCLUDE_DIR ARROW_LIB_DIR ARROW_FULL_SO_VERSION ARROW_SO_VERSION
-  VERSION_VAR ARROW_VERSION)
-set(ARROW_FOUND ${Arrow_FOUND})
-
-if(Arrow_FOUND AND NOT Arrow_FIND_QUIETLY)
-  message(STATUS "Arrow version: ${ARROW_VERSION} (${ARROW_FIND_APPROACH})")
-  message(STATUS "Arrow SO and ABI version: ${ARROW_SO_VERSION}")
-  message(STATUS "Arrow full SO version: ${ARROW_FULL_SO_VERSION}")
-  message(STATUS "Found the Arrow core shared library: ${ARROW_SHARED_LIB}")
-  message(STATUS "Found the Arrow core import library: ${ARROW_IMPORT_LIB}")
-  message(STATUS "Found the Arrow core static library: ${ARROW_STATIC_LIB}")

Review Comment:
   If I understand correctly, this file is now replaced by cmake's `find_package(Arrow)` now using the `ArrowConfig.cmake` file that gets installed in the cmake directory (when installing Arrow C++). 
   But so before, the above printed some details about Arrow being found (and which version, the path, ..). Is there a way to let `find_package(Arrow)` still print this? (would adding that to `ArrowConfig.cmake.in` do this?)



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] github-actions[bot] commented on pull request #13892: ARROW-12175: [C++] Fix CMake packages

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on PR #13892:
URL: https://github.com/apache/arrow/pull/13892#issuecomment-1226919453

   Revision: c0d38cb804bb23c12d698cda40a22bea62342bd9
   
   Submitted crossbow builds: [ursacomputing/crossbow @ actions-fd6fd77874](https://github.com/ursacomputing/crossbow/branches/all?query=actions-fd6fd77874)
   
   |Task|Status|
   |----|------|
   |almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-almalinux-8-amd64)|
   |almalinux-8-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-fd6fd77874-travis-almalinux-8-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |almalinux-9-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-almalinux-9-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-almalinux-9-amd64)|
   |almalinux-9-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-fd6fd77874-travis-almalinux-9-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |amazon-linux-2-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-amazon-linux-2-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-amazon-linux-2-amd64)|
   |amazon-linux-2-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-fd6fd77874-travis-amazon-linux-2-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |centos-7-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-centos-7-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-centos-7-amd64)|
   |centos-8-stream-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-centos-8-stream-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-centos-8-stream-amd64)|
   |centos-8-stream-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-fd6fd77874-travis-centos-8-stream-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |centos-9-stream-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-centos-9-stream-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-centos-9-stream-amd64)|
   |centos-9-stream-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-fd6fd77874-travis-centos-9-stream-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |conan-maximum|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-conan-maximum)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-conan-maximum)|
   |conan-minimum|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-conan-minimum)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-conan-minimum)|
   |conda-clean|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-fd6fd77874-azure-conda-clean)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-fd6fd77874-azure-conda-clean)|
   |conda-linux-gcc-py310-arm64|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-fd6fd77874-azure-conda-linux-gcc-py310-arm64)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-fd6fd77874-azure-conda-linux-gcc-py310-arm64)|
   |conda-linux-gcc-py310-cpu|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-fd6fd77874-azure-conda-linux-gcc-py310-cpu)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-fd6fd77874-azure-conda-linux-gcc-py310-cpu)|
   |conda-linux-gcc-py310-cuda|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-fd6fd77874-azure-conda-linux-gcc-py310-cuda)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-fd6fd77874-azure-conda-linux-gcc-py310-cuda)|
   |conda-linux-gcc-py310-ppc64le|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-fd6fd77874-azure-conda-linux-gcc-py310-ppc64le)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-fd6fd77874-azure-conda-linux-gcc-py310-ppc64le)|
   |conda-linux-gcc-py37-arm64|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-fd6fd77874-azure-conda-linux-gcc-py37-arm64)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-fd6fd77874-azure-conda-linux-gcc-py37-arm64)|
   |conda-linux-gcc-py37-cpu-r40|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-fd6fd77874-azure-conda-linux-gcc-py37-cpu-r40)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-fd6fd77874-azure-conda-linux-gcc-py37-cpu-r40)|
   |conda-linux-gcc-py37-cpu-r41|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-fd6fd77874-azure-conda-linux-gcc-py37-cpu-r41)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-fd6fd77874-azure-conda-linux-gcc-py37-cpu-r41)|
   |conda-linux-gcc-py37-cuda|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-fd6fd77874-azure-conda-linux-gcc-py37-cuda)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-fd6fd77874-azure-conda-linux-gcc-py37-cuda)|
   |conda-linux-gcc-py37-ppc64le|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-fd6fd77874-azure-conda-linux-gcc-py37-ppc64le)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-fd6fd77874-azure-conda-linux-gcc-py37-ppc64le)|
   |conda-linux-gcc-py38-arm64|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-fd6fd77874-azure-conda-linux-gcc-py38-arm64)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-fd6fd77874-azure-conda-linux-gcc-py38-arm64)|
   |conda-linux-gcc-py38-cpu|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-fd6fd77874-azure-conda-linux-gcc-py38-cpu)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-fd6fd77874-azure-conda-linux-gcc-py38-cpu)|
   |conda-linux-gcc-py38-cuda|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-fd6fd77874-azure-conda-linux-gcc-py38-cuda)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-fd6fd77874-azure-conda-linux-gcc-py38-cuda)|
   |conda-linux-gcc-py38-ppc64le|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-fd6fd77874-azure-conda-linux-gcc-py38-ppc64le)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-fd6fd77874-azure-conda-linux-gcc-py38-ppc64le)|
   |conda-linux-gcc-py39-arm64|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-fd6fd77874-azure-conda-linux-gcc-py39-arm64)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-fd6fd77874-azure-conda-linux-gcc-py39-arm64)|
   |conda-linux-gcc-py39-cpu|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-fd6fd77874-azure-conda-linux-gcc-py39-cpu)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-fd6fd77874-azure-conda-linux-gcc-py39-cpu)|
   |conda-linux-gcc-py39-cuda|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-fd6fd77874-azure-conda-linux-gcc-py39-cuda)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-fd6fd77874-azure-conda-linux-gcc-py39-cuda)|
   |conda-linux-gcc-py39-ppc64le|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-fd6fd77874-azure-conda-linux-gcc-py39-ppc64le)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-fd6fd77874-azure-conda-linux-gcc-py39-ppc64le)|
   |conda-osx-arm64-clang-py310|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-fd6fd77874-azure-conda-osx-arm64-clang-py310)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-fd6fd77874-azure-conda-osx-arm64-clang-py310)|
   |conda-osx-arm64-clang-py38|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-fd6fd77874-azure-conda-osx-arm64-clang-py38)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-fd6fd77874-azure-conda-osx-arm64-clang-py38)|
   |conda-osx-arm64-clang-py39|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-fd6fd77874-azure-conda-osx-arm64-clang-py39)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-fd6fd77874-azure-conda-osx-arm64-clang-py39)|
   |conda-osx-clang-py310|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-fd6fd77874-azure-conda-osx-clang-py310)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-fd6fd77874-azure-conda-osx-clang-py310)|
   |conda-osx-clang-py37-r40|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-fd6fd77874-azure-conda-osx-clang-py37-r40)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-fd6fd77874-azure-conda-osx-clang-py37-r40)|
   |conda-osx-clang-py37-r41|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-fd6fd77874-azure-conda-osx-clang-py37-r41)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-fd6fd77874-azure-conda-osx-clang-py37-r41)|
   |conda-osx-clang-py38|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-fd6fd77874-azure-conda-osx-clang-py38)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-fd6fd77874-azure-conda-osx-clang-py38)|
   |conda-osx-clang-py39|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-fd6fd77874-azure-conda-osx-clang-py39)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-fd6fd77874-azure-conda-osx-clang-py39)|
   |conda-win-vs2017-py310|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-fd6fd77874-azure-conda-win-vs2017-py310)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-fd6fd77874-azure-conda-win-vs2017-py310)|
   |conda-win-vs2017-py37-r40|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-fd6fd77874-azure-conda-win-vs2017-py37-r40)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-fd6fd77874-azure-conda-win-vs2017-py37-r40)|
   |conda-win-vs2017-py37-r41|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-fd6fd77874-azure-conda-win-vs2017-py37-r41)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-fd6fd77874-azure-conda-win-vs2017-py37-r41)|
   |conda-win-vs2017-py38|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-fd6fd77874-azure-conda-win-vs2017-py38)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-fd6fd77874-azure-conda-win-vs2017-py38)|
   |conda-win-vs2017-py39|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-fd6fd77874-azure-conda-win-vs2017-py39)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-fd6fd77874-azure-conda-win-vs2017-py39)|
   |debian-bookworm-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-debian-bookworm-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-debian-bookworm-amd64)|
   |debian-bookworm-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-fd6fd77874-travis-debian-bookworm-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |debian-bullseye-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-debian-bullseye-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-debian-bullseye-amd64)|
   |debian-bullseye-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-fd6fd77874-travis-debian-bullseye-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |example-cpp-minimal-build-static|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-example-cpp-minimal-build-static)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-example-cpp-minimal-build-static)|
   |example-cpp-minimal-build-static-system-dependency|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-example-cpp-minimal-build-static-system-dependency)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-example-cpp-minimal-build-static-system-dependency)|
   |example-python-minimal-build-fedora-conda|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-example-python-minimal-build-fedora-conda)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-example-python-minimal-build-fedora-conda)|
   |example-python-minimal-build-ubuntu-venv|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-example-python-minimal-build-ubuntu-venv)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-example-python-minimal-build-ubuntu-venv)|
   |homebrew-cpp|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-homebrew-cpp)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-homebrew-cpp)|
   |homebrew-r-autobrew|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-homebrew-r-autobrew)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-homebrew-r-autobrew)|
   |homebrew-r-brew|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-homebrew-r-brew)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-homebrew-r-brew)|
   |java-jars|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-java-jars)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-java-jars)|
   |nuget|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-nuget)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-nuget)|
   |python-sdist|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-python-sdist)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-python-sdist)|
   |r-binary-packages|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-r-binary-packages)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-r-binary-packages)|
   |test-alpine-linux-cpp|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-test-alpine-linux-cpp)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-test-alpine-linux-cpp)|
   |test-build-cpp-fuzz|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-test-build-cpp-fuzz)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-test-build-cpp-fuzz)|
   |test-build-vcpkg-win|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-test-build-vcpkg-win)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-test-build-vcpkg-win)|
   |test-conda-cpp|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-test-conda-cpp)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-test-conda-cpp)|
   |test-conda-cpp-valgrind|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-fd6fd77874-azure-test-conda-cpp-valgrind)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-fd6fd77874-azure-test-conda-cpp-valgrind)|
   |test-conda-python-3.10|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-test-conda-python-3.10)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-test-conda-python-3.10)|
   |test-conda-python-3.7|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-test-conda-python-3.7)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-test-conda-python-3.7)|
   |test-conda-python-3.7-hdfs-2.9.2|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-test-conda-python-3.7-hdfs-2.9.2)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-test-conda-python-3.7-hdfs-2.9.2)|
   |test-conda-python-3.7-hdfs-3.2.1|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-test-conda-python-3.7-hdfs-3.2.1)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-test-conda-python-3.7-hdfs-3.2.1)|
   |test-conda-python-3.7-kartothek-latest|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-test-conda-python-3.7-kartothek-latest)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-test-conda-python-3.7-kartothek-latest)|
   |test-conda-python-3.7-kartothek-master|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-test-conda-python-3.7-kartothek-master)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-test-conda-python-3.7-kartothek-master)|
   |test-conda-python-3.7-pandas-0.24|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-test-conda-python-3.7-pandas-0.24)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-test-conda-python-3.7-pandas-0.24)|
   |test-conda-python-3.7-pandas-latest|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-test-conda-python-3.7-pandas-latest)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-test-conda-python-3.7-pandas-latest)|
   |test-conda-python-3.7-spark-v3.1.2|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-test-conda-python-3.7-spark-v3.1.2)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-test-conda-python-3.7-spark-v3.1.2)|
   |test-conda-python-3.8|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-test-conda-python-3.8)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-test-conda-python-3.8)|
   |test-conda-python-3.8-hypothesis|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-test-conda-python-3.8-hypothesis)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-test-conda-python-3.8-hypothesis)|
   |test-conda-python-3.8-pandas-latest|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-test-conda-python-3.8-pandas-latest)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-test-conda-python-3.8-pandas-latest)|
   |test-conda-python-3.8-pandas-nightly|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-test-conda-python-3.8-pandas-nightly)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-test-conda-python-3.8-pandas-nightly)|
   |test-conda-python-3.8-spark-v3.2.0|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-test-conda-python-3.8-spark-v3.2.0)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-test-conda-python-3.8-spark-v3.2.0)|
   |test-conda-python-3.9|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-test-conda-python-3.9)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-test-conda-python-3.9)|
   |test-conda-python-3.9-dask-latest|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-test-conda-python-3.9-dask-latest)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-test-conda-python-3.9-dask-latest)|
   |test-conda-python-3.9-dask-master|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-test-conda-python-3.9-dask-master)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-test-conda-python-3.9-dask-master)|
   |test-conda-python-3.9-pandas-master|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-test-conda-python-3.9-pandas-master)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-test-conda-python-3.9-pandas-master)|
   |test-conda-python-3.9-spark-master|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-test-conda-python-3.9-spark-master)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-test-conda-python-3.9-spark-master)|
   |test-debian-10-cpp-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-test-debian-10-cpp-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-test-debian-10-cpp-amd64)|
   |test-debian-10-cpp-i386|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-test-debian-10-cpp-i386)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-test-debian-10-cpp-i386)|
   |test-debian-11-cpp-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-test-debian-11-cpp-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-test-debian-11-cpp-amd64)|
   |test-debian-11-cpp-i386|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-test-debian-11-cpp-i386)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-test-debian-11-cpp-i386)|
   |test-debian-11-go-1.16|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-fd6fd77874-azure-test-debian-11-go-1.16)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-fd6fd77874-azure-test-debian-11-go-1.16)|
   |test-debian-11-python-3|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-fd6fd77874-azure-test-debian-11-python-3)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-fd6fd77874-azure-test-debian-11-python-3)|
   |test-debian-c-glib|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-test-debian-c-glib)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-test-debian-c-glib)|
   |test-debian-ruby|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-test-debian-ruby)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-test-debian-ruby)|
   |test-fedora-35-cpp|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-test-fedora-35-cpp)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-test-fedora-35-cpp)|
   |test-fedora-35-python-3|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-fd6fd77874-azure-test-fedora-35-python-3)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-fd6fd77874-azure-test-fedora-35-python-3)|
   |test-fedora-r-clang-sanitizer|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-fd6fd77874-azure-test-fedora-r-clang-sanitizer)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-fd6fd77874-azure-test-fedora-r-clang-sanitizer)|
   |test-r-arrow-backwards-compatibility|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-test-r-arrow-backwards-compatibility)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-test-r-arrow-backwards-compatibility)|
   |test-r-depsource-bundled|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-fd6fd77874-azure-test-r-depsource-bundled)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-fd6fd77874-azure-test-r-depsource-bundled)|
   |test-r-depsource-system|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-test-r-depsource-system)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-test-r-depsource-system)|
   |test-r-dev-duckdb|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-test-r-dev-duckdb)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-test-r-dev-duckdb)|
   |test-r-devdocs|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-test-r-devdocs)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-test-r-devdocs)|
   |test-r-gcc-11|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-test-r-gcc-11)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-test-r-gcc-11)|
   |test-r-gcc-12|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-test-r-gcc-12)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-test-r-gcc-12)|
   |test-r-install-local|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-test-r-install-local)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-test-r-install-local)|
   |test-r-linux-as-cran|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-test-r-linux-as-cran)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-test-r-linux-as-cran)|
   |test-r-linux-rchk|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-test-r-linux-rchk)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-test-r-linux-rchk)|
   |test-r-linux-valgrind|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-fd6fd77874-azure-test-r-linux-valgrind)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-fd6fd77874-azure-test-r-linux-valgrind)|
   |test-r-minimal-build|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-fd6fd77874-azure-test-r-minimal-build)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-fd6fd77874-azure-test-r-minimal-build)|
   |test-r-offline-maximal|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-test-r-offline-maximal)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-test-r-offline-maximal)|
   |test-r-offline-minimal|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-fd6fd77874-azure-test-r-offline-minimal)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-fd6fd77874-azure-test-r-offline-minimal)|
   |test-r-rhub-debian-gcc-devel-lto-latest|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-fd6fd77874-azure-test-r-rhub-debian-gcc-devel-lto-latest)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-fd6fd77874-azure-test-r-rhub-debian-gcc-devel-lto-latest)|
   |test-r-rhub-debian-gcc-release-custom-ccache|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-fd6fd77874-azure-test-r-rhub-debian-gcc-release-custom-ccache)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-fd6fd77874-azure-test-r-rhub-debian-gcc-release-custom-ccache)|
   |test-r-rhub-ubuntu-gcc-release-latest|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-fd6fd77874-azure-test-r-rhub-ubuntu-gcc-release-latest)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-fd6fd77874-azure-test-r-rhub-ubuntu-gcc-release-latest)|
   |test-r-rocker-r-base-latest|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-fd6fd77874-azure-test-r-rocker-r-base-latest)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-fd6fd77874-azure-test-r-rocker-r-base-latest)|
   |test-r-rstudio-r-base-4.1-opensuse153|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-fd6fd77874-azure-test-r-rstudio-r-base-4.1-opensuse153)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-fd6fd77874-azure-test-r-rstudio-r-base-4.1-opensuse153)|
   |test-r-rstudio-r-base-4.2-centos7-devtoolset-8|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-fd6fd77874-azure-test-r-rstudio-r-base-4.2-centos7-devtoolset-8)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-fd6fd77874-azure-test-r-rstudio-r-base-4.2-centos7-devtoolset-8)|
   |test-r-rstudio-r-base-4.2-focal|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-fd6fd77874-azure-test-r-rstudio-r-base-4.2-focal)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-fd6fd77874-azure-test-r-rstudio-r-base-4.2-focal)|
   |test-r-ubuntu-22.04|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-test-r-ubuntu-22.04)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-test-r-ubuntu-22.04)|
   |test-r-versions|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-test-r-versions)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-test-r-versions)|
   |test-skyhook-integration|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-test-skyhook-integration)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-test-skyhook-integration)|
   |test-ubuntu-18.04-cpp|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-test-ubuntu-18.04-cpp)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-test-ubuntu-18.04-cpp)|
   |test-ubuntu-18.04-cpp-release|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-test-ubuntu-18.04-cpp-release)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-test-ubuntu-18.04-cpp-release)|
   |test-ubuntu-18.04-cpp-static|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-test-ubuntu-18.04-cpp-static)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-test-ubuntu-18.04-cpp-static)|
   |test-ubuntu-18.04-r-sanitizer|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-fd6fd77874-azure-test-ubuntu-18.04-r-sanitizer)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-fd6fd77874-azure-test-ubuntu-18.04-r-sanitizer)|
   |test-ubuntu-20.04-cpp|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-test-ubuntu-20.04-cpp)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-test-ubuntu-20.04-cpp)|
   |test-ubuntu-20.04-cpp-14|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-test-ubuntu-20.04-cpp-14)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-test-ubuntu-20.04-cpp-14)|
   |test-ubuntu-20.04-cpp-17|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-test-ubuntu-20.04-cpp-17)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-test-ubuntu-20.04-cpp-17)|
   |test-ubuntu-20.04-cpp-bundled|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-test-ubuntu-20.04-cpp-bundled)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-test-ubuntu-20.04-cpp-bundled)|
   |test-ubuntu-20.04-cpp-thread-sanitizer|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-test-ubuntu-20.04-cpp-thread-sanitizer)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-test-ubuntu-20.04-cpp-thread-sanitizer)|
   |test-ubuntu-20.04-python-3|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-fd6fd77874-azure-test-ubuntu-20.04-python-3)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-fd6fd77874-azure-test-ubuntu-20.04-python-3)|
   |test-ubuntu-22.04-cpp|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-test-ubuntu-22.04-cpp)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-test-ubuntu-22.04-cpp)|
   |test-ubuntu-c-glib|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-test-ubuntu-c-glib)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-test-ubuntu-c-glib)|
   |test-ubuntu-default-docs|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-fd6fd77874-azure-test-ubuntu-default-docs)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-fd6fd77874-azure-test-ubuntu-default-docs)|
   |test-ubuntu-ruby|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-test-ubuntu-ruby)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-test-ubuntu-ruby)|
   |ubuntu-bionic-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-ubuntu-bionic-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-ubuntu-bionic-amd64)|
   |ubuntu-bionic-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-fd6fd77874-travis-ubuntu-bionic-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |ubuntu-focal-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-ubuntu-focal-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-ubuntu-focal-amd64)|
   |ubuntu-focal-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-fd6fd77874-travis-ubuntu-focal-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |ubuntu-jammy-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-ubuntu-jammy-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-ubuntu-jammy-amd64)|
   |ubuntu-jammy-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-fd6fd77874-travis-ubuntu-jammy-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |verify-rc-source-cpp-linux-almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-cpp-linux-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-cpp-linux-almalinux-8-amd64)|
   |verify-rc-source-cpp-linux-conda-latest-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-cpp-linux-conda-latest-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-cpp-linux-conda-latest-amd64)|
   |verify-rc-source-cpp-linux-ubuntu-18.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-cpp-linux-ubuntu-18.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-cpp-linux-ubuntu-18.04-amd64)|
   |verify-rc-source-cpp-linux-ubuntu-20.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-cpp-linux-ubuntu-20.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-cpp-linux-ubuntu-20.04-amd64)|
   |verify-rc-source-cpp-linux-ubuntu-22.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-cpp-linux-ubuntu-22.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-cpp-linux-ubuntu-22.04-amd64)|
   |verify-rc-source-cpp-macos-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-cpp-macos-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-cpp-macos-amd64)|
   |verify-rc-source-cpp-macos-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-cpp-macos-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-cpp-macos-arm64)|
   |verify-rc-source-cpp-macos-conda-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-cpp-macos-conda-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-cpp-macos-conda-amd64)|
   |verify-rc-source-csharp-linux-almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-csharp-linux-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-csharp-linux-almalinux-8-amd64)|
   |verify-rc-source-csharp-linux-conda-latest-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-csharp-linux-conda-latest-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-csharp-linux-conda-latest-amd64)|
   |verify-rc-source-csharp-linux-ubuntu-18.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-csharp-linux-ubuntu-18.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-csharp-linux-ubuntu-18.04-amd64)|
   |verify-rc-source-csharp-linux-ubuntu-20.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-csharp-linux-ubuntu-20.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-csharp-linux-ubuntu-20.04-amd64)|
   |verify-rc-source-csharp-linux-ubuntu-22.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-csharp-linux-ubuntu-22.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-csharp-linux-ubuntu-22.04-amd64)|
   |verify-rc-source-csharp-macos-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-csharp-macos-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-csharp-macos-amd64)|
   |verify-rc-source-csharp-macos-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-csharp-macos-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-csharp-macos-arm64)|
   |verify-rc-source-go-linux-almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-go-linux-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-go-linux-almalinux-8-amd64)|
   |verify-rc-source-go-linux-conda-latest-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-go-linux-conda-latest-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-go-linux-conda-latest-amd64)|
   |verify-rc-source-go-linux-ubuntu-18.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-go-linux-ubuntu-18.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-go-linux-ubuntu-18.04-amd64)|
   |verify-rc-source-go-linux-ubuntu-20.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-go-linux-ubuntu-20.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-go-linux-ubuntu-20.04-amd64)|
   |verify-rc-source-go-linux-ubuntu-22.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-go-linux-ubuntu-22.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-go-linux-ubuntu-22.04-amd64)|
   |verify-rc-source-go-macos-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-go-macos-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-go-macos-amd64)|
   |verify-rc-source-go-macos-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-go-macos-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-go-macos-arm64)|
   |verify-rc-source-integration-linux-almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-integration-linux-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-integration-linux-almalinux-8-amd64)|
   |verify-rc-source-integration-linux-conda-latest-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-integration-linux-conda-latest-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-integration-linux-conda-latest-amd64)|
   |verify-rc-source-integration-linux-ubuntu-18.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-integration-linux-ubuntu-18.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-integration-linux-ubuntu-18.04-amd64)|
   |verify-rc-source-integration-linux-ubuntu-20.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-integration-linux-ubuntu-20.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-integration-linux-ubuntu-20.04-amd64)|
   |verify-rc-source-integration-linux-ubuntu-22.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-integration-linux-ubuntu-22.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-integration-linux-ubuntu-22.04-amd64)|
   |verify-rc-source-integration-macos-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-integration-macos-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-integration-macos-amd64)|
   |verify-rc-source-integration-macos-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-integration-macos-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-integration-macos-arm64)|
   |verify-rc-source-integration-macos-conda-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-integration-macos-conda-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-integration-macos-conda-amd64)|
   |verify-rc-source-java-linux-almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-java-linux-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-java-linux-almalinux-8-amd64)|
   |verify-rc-source-java-linux-conda-latest-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-java-linux-conda-latest-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-java-linux-conda-latest-amd64)|
   |verify-rc-source-java-linux-ubuntu-18.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-java-linux-ubuntu-18.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-java-linux-ubuntu-18.04-amd64)|
   |verify-rc-source-java-linux-ubuntu-20.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-java-linux-ubuntu-20.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-java-linux-ubuntu-20.04-amd64)|
   |verify-rc-source-java-linux-ubuntu-22.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-java-linux-ubuntu-22.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-java-linux-ubuntu-22.04-amd64)|
   |verify-rc-source-java-macos-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-java-macos-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-java-macos-amd64)|
   |verify-rc-source-js-linux-almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-js-linux-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-js-linux-almalinux-8-amd64)|
   |verify-rc-source-js-linux-conda-latest-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-js-linux-conda-latest-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-js-linux-conda-latest-amd64)|
   |verify-rc-source-js-linux-ubuntu-18.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-js-linux-ubuntu-18.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-js-linux-ubuntu-18.04-amd64)|
   |verify-rc-source-js-linux-ubuntu-20.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-js-linux-ubuntu-20.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-js-linux-ubuntu-20.04-amd64)|
   |verify-rc-source-js-linux-ubuntu-22.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-js-linux-ubuntu-22.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-js-linux-ubuntu-22.04-amd64)|
   |verify-rc-source-js-macos-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-js-macos-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-js-macos-amd64)|
   |verify-rc-source-js-macos-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-js-macos-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-js-macos-arm64)|
   |verify-rc-source-python-linux-almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-python-linux-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-python-linux-almalinux-8-amd64)|
   |verify-rc-source-python-linux-conda-latest-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-python-linux-conda-latest-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-python-linux-conda-latest-amd64)|
   |verify-rc-source-python-linux-ubuntu-18.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-python-linux-ubuntu-18.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-python-linux-ubuntu-18.04-amd64)|
   |verify-rc-source-python-linux-ubuntu-20.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-python-linux-ubuntu-20.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-python-linux-ubuntu-20.04-amd64)|
   |verify-rc-source-python-linux-ubuntu-22.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-python-linux-ubuntu-22.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-python-linux-ubuntu-22.04-amd64)|
   |verify-rc-source-python-macos-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-python-macos-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-python-macos-amd64)|
   |verify-rc-source-python-macos-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-python-macos-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-python-macos-arm64)|
   |verify-rc-source-python-macos-conda-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-python-macos-conda-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-python-macos-conda-amd64)|
   |verify-rc-source-ruby-linux-almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-ruby-linux-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-ruby-linux-almalinux-8-amd64)|
   |verify-rc-source-ruby-linux-conda-latest-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-ruby-linux-conda-latest-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-ruby-linux-conda-latest-amd64)|
   |verify-rc-source-ruby-linux-ubuntu-18.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-ruby-linux-ubuntu-18.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-ruby-linux-ubuntu-18.04-amd64)|
   |verify-rc-source-ruby-linux-ubuntu-20.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-ruby-linux-ubuntu-20.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-ruby-linux-ubuntu-20.04-amd64)|
   |verify-rc-source-ruby-linux-ubuntu-22.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-ruby-linux-ubuntu-22.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-ruby-linux-ubuntu-22.04-amd64)|
   |verify-rc-source-ruby-macos-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-ruby-macos-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-ruby-macos-amd64)|
   |verify-rc-source-ruby-macos-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-ruby-macos-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-ruby-macos-arm64)|
   |verify-rc-source-windows|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-verify-rc-source-windows)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-verify-rc-source-windows)|
   |wheel-macos-big-sur-cp310-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-wheel-macos-big-sur-cp310-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-wheel-macos-big-sur-cp310-arm64)|
   |wheel-macos-big-sur-cp310-universal2|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-wheel-macos-big-sur-cp310-universal2)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-wheel-macos-big-sur-cp310-universal2)|
   |wheel-macos-big-sur-cp38-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-wheel-macos-big-sur-cp38-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-wheel-macos-big-sur-cp38-arm64)|
   |wheel-macos-big-sur-cp39-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-wheel-macos-big-sur-cp39-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-wheel-macos-big-sur-cp39-arm64)|
   |wheel-macos-big-sur-cp39-universal2|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-wheel-macos-big-sur-cp39-universal2)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-wheel-macos-big-sur-cp39-universal2)|
   |wheel-macos-high-sierra-cp310-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-wheel-macos-high-sierra-cp310-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-wheel-macos-high-sierra-cp310-amd64)|
   |wheel-macos-high-sierra-cp37-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-wheel-macos-high-sierra-cp37-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-wheel-macos-high-sierra-cp37-amd64)|
   |wheel-macos-high-sierra-cp38-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-wheel-macos-high-sierra-cp38-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-wheel-macos-high-sierra-cp38-amd64)|
   |wheel-macos-high-sierra-cp39-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-wheel-macos-high-sierra-cp39-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-wheel-macos-high-sierra-cp39-amd64)|
   |wheel-macos-mavericks-cp310-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-wheel-macos-mavericks-cp310-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-wheel-macos-mavericks-cp310-amd64)|
   |wheel-macos-mavericks-cp37-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-wheel-macos-mavericks-cp37-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-wheel-macos-mavericks-cp37-amd64)|
   |wheel-macos-mavericks-cp38-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-wheel-macos-mavericks-cp38-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-wheel-macos-mavericks-cp38-amd64)|
   |wheel-macos-mavericks-cp39-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-wheel-macos-mavericks-cp39-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-wheel-macos-mavericks-cp39-amd64)|
   |wheel-manylinux2014-cp310-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-wheel-manylinux2014-cp310-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-wheel-manylinux2014-cp310-amd64)|
   |wheel-manylinux2014-cp310-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-fd6fd77874-travis-wheel-manylinux2014-cp310-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |wheel-manylinux2014-cp37-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-wheel-manylinux2014-cp37-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-wheel-manylinux2014-cp37-amd64)|
   |wheel-manylinux2014-cp37-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-fd6fd77874-travis-wheel-manylinux2014-cp37-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |wheel-manylinux2014-cp38-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-wheel-manylinux2014-cp38-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-wheel-manylinux2014-cp38-amd64)|
   |wheel-manylinux2014-cp38-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-fd6fd77874-travis-wheel-manylinux2014-cp38-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |wheel-manylinux2014-cp39-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-wheel-manylinux2014-cp39-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-wheel-manylinux2014-cp39-amd64)|
   |wheel-manylinux2014-cp39-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-fd6fd77874-travis-wheel-manylinux2014-cp39-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |wheel-windows-cp310-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-wheel-windows-cp310-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-wheel-windows-cp310-amd64)|
   |wheel-windows-cp37-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-wheel-windows-cp37-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-wheel-windows-cp37-amd64)|
   |wheel-windows-cp38-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-wheel-windows-cp38-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-wheel-windows-cp38-amd64)|
   |wheel-windows-cp39-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-fd6fd77874-github-wheel-windows-cp39-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-fd6fd77874-github-wheel-windows-cp39-amd64)|


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] kou commented on pull request #13892: ARROW-12175: [C++] Fix CMake packages

Posted by GitBox <gi...@apache.org>.
kou commented on PR #13892:
URL: https://github.com/apache/arrow/pull/13892#issuecomment-1221802464

   @github-actions crossbow submit -g nightly-tests -g nightly-packaging -g nightly-release


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] kou merged pull request #13892: ARROW-12175: [C++] Fix CMake packages

Posted by GitBox <gi...@apache.org>.
kou merged PR #13892:
URL: https://github.com/apache/arrow/pull/13892


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] github-actions[bot] commented on pull request #13892: ARROW-12175: [C++] Fix CMake packages

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on PR #13892:
URL: https://github.com/apache/arrow/pull/13892#issuecomment-1216293952

   https://issues.apache.org/jira/browse/ARROW-12175


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] jorisvandenbossche commented on a diff in pull request #13892: ARROW-12175: [C++] Fix CMake packages

Posted by GitBox <gi...@apache.org>.
jorisvandenbossche commented on code in PR #13892:
URL: https://github.com/apache/arrow/pull/13892#discussion_r963806318


##########
cpp/cmake_modules/FindArrow.cmake:
##########
@@ -1,466 +0,0 @@
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-#   http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-# KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-
-# - Find Arrow (arrow/api.h, libarrow.a, libarrow.so)
-# This module defines
-#  ARROW_FOUND, whether Arrow has been found
-#  ARROW_FULL_SO_VERSION, full shared object version of found Arrow "100.0.0"
-#  ARROW_IMPORT_LIB, path to libarrow's import library (Windows only)
-#  ARROW_INCLUDE_DIR, directory containing headers
-#  ARROW_LIBS, deprecated. Use ARROW_LIB_DIR instead
-#  ARROW_LIB_DIR, directory containing Arrow libraries
-#  ARROW_SHARED_IMP_LIB, deprecated. Use ARROW_IMPORT_LIB instead
-#  ARROW_SHARED_LIB, path to libarrow's shared library
-#  ARROW_SO_VERSION, shared object version of found Arrow such as "100"
-#  ARROW_STATIC_LIB, path to libarrow.a
-#  ARROW_VERSION, version of found Arrow
-#  ARROW_VERSION_MAJOR, major version of found Arrow
-#  ARROW_VERSION_MINOR, minor version of found Arrow
-#  ARROW_VERSION_PATCH, patch version of found Arrow
-
-if(DEFINED ARROW_FOUND)
-  return()
-endif()
-
-find_package(PkgConfig)
-include(FindPackageHandleStandardArgs)
-
-if(WIN32 AND NOT MINGW)
-  # This is used to handle builds using e.g. clang in an MSVC setting.
-  set(MSVC_TOOLCHAIN TRUE)
-else()
-  set(MSVC_TOOLCHAIN FALSE)
-endif()
-
-set(ARROW_SEARCH_LIB_PATH_SUFFIXES)
-if(CMAKE_LIBRARY_ARCHITECTURE)
-  list(APPEND ARROW_SEARCH_LIB_PATH_SUFFIXES "lib/${CMAKE_LIBRARY_ARCHITECTURE}")
-endif()
-list(APPEND
-     ARROW_SEARCH_LIB_PATH_SUFFIXES
-     "lib64"
-     "lib32"
-     "lib"
-     "bin")
-set(ARROW_CONFIG_SUFFIXES
-    "_RELEASE"
-    "_RELWITHDEBINFO"
-    "_MINSIZEREL"
-    "_DEBUG"
-    "")
-if(CMAKE_BUILD_TYPE)
-  string(TOUPPER ${CMAKE_BUILD_TYPE} ARROW_CONFIG_SUFFIX_PREFERRED)
-  set(ARROW_CONFIG_SUFFIX_PREFERRED "_${ARROW_CONFIG_SUFFIX_PREFERRED}")
-  list(INSERT ARROW_CONFIG_SUFFIXES 0 "${ARROW_CONFIG_SUFFIX_PREFERRED}")
-endif()
-
-if(NOT DEFINED ARROW_MSVC_STATIC_LIB_SUFFIX)
-  if(MSVC_TOOLCHAIN)
-    set(ARROW_MSVC_STATIC_LIB_SUFFIX "_static")
-  else()
-    set(ARROW_MSVC_STATIC_LIB_SUFFIX "")
-  endif()
-endif()
-
-# Internal function.
-#
-# Set shared library name for ${base_name} to ${output_variable}.
-#
-# Example:
-#   arrow_build_shared_library_name(ARROW_SHARED_LIBRARY_NAME arrow)
-#   # -> ARROW_SHARED_LIBRARY_NAME=libarrow.so on Linux
-#   # -> ARROW_SHARED_LIBRARY_NAME=libarrow.dylib on macOS
-#   # -> ARROW_SHARED_LIBRARY_NAME=arrow.dll with MSVC on Windows
-#   # -> ARROW_SHARED_LIBRARY_NAME=libarrow.dll with MinGW on Windows
-function(arrow_build_shared_library_name output_variable base_name)
-  set(${output_variable}
-      "${CMAKE_SHARED_LIBRARY_PREFIX}${base_name}${CMAKE_SHARED_LIBRARY_SUFFIX}"
-      PARENT_SCOPE)
-endfunction()
-
-# Internal function.
-#
-# Set import library name for ${base_name} to ${output_variable}.
-# This is useful only for MSVC build. Import library is used only
-# with MSVC build.
-#
-# Example:
-#   arrow_build_import_library_name(ARROW_IMPORT_LIBRARY_NAME arrow)
-#   # -> ARROW_IMPORT_LIBRARY_NAME=arrow on Linux (meaningless)
-#   # -> ARROW_IMPORT_LIBRARY_NAME=arrow on macOS (meaningless)
-#   # -> ARROW_IMPORT_LIBRARY_NAME=arrow.lib with MSVC on Windows
-#   # -> ARROW_IMPORT_LIBRARY_NAME=libarrow.dll.a with MinGW on Windows
-function(arrow_build_import_library_name output_variable base_name)
-  set(${output_variable}
-      "${CMAKE_IMPORT_LIBRARY_PREFIX}${base_name}${CMAKE_IMPORT_LIBRARY_SUFFIX}"
-      PARENT_SCOPE)
-endfunction()
-
-# Internal function.
-#
-# Set static library name for ${base_name} to ${output_variable}.
-#
-# Example:
-#   arrow_build_static_library_name(ARROW_STATIC_LIBRARY_NAME arrow)
-#   # -> ARROW_STATIC_LIBRARY_NAME=libarrow.a on Linux
-#   # -> ARROW_STATIC_LIBRARY_NAME=libarrow.a on macOS
-#   # -> ARROW_STATIC_LIBRARY_NAME=arrow.lib with MSVC on Windows
-#   # -> ARROW_STATIC_LIBRARY_NAME=libarrow.dll.a with MinGW on Windows
-function(arrow_build_static_library_name output_variable base_name)
-  set(${output_variable}
-      "${CMAKE_STATIC_LIBRARY_PREFIX}${base_name}${ARROW_MSVC_STATIC_LIB_SUFFIX}${CMAKE_STATIC_LIBRARY_SUFFIX}"
-      PARENT_SCOPE)
-endfunction()
-
-# Internal function.
-#
-# Set macro value for ${macro_name} in ${header_content} to ${output_variable}.
-#
-# Example:
-#   arrow_extract_macro_value(version_major
-#                             "ARROW_VERSION_MAJOR"
-#                             "#define ARROW_VERSION_MAJOR 1.0.0")
-#   # -> version_major=1.0.0
-function(arrow_extract_macro_value output_variable macro_name header_content)
-  string(REGEX MATCH "#define +${macro_name} +[^\r\n]+" macro_definition
-               "${header_content}")
-  string(REGEX REPLACE "^#define +${macro_name} +(.+)$" "\\1" macro_value
-                       "${macro_definition}")
-  set(${output_variable}
-      "${macro_value}"
-      PARENT_SCOPE)
-endfunction()
-
-# Internal macro only for arrow_find_package.
-#
-# Find package in HOME.
-macro(arrow_find_package_home)
-  find_path(${prefix}_include_dir "${header_path}"
-            PATHS "${home}"
-            PATH_SUFFIXES "include"
-            NO_DEFAULT_PATH)
-  set(include_dir "${${prefix}_include_dir}")
-  set(${prefix}_INCLUDE_DIR
-      "${include_dir}"
-      PARENT_SCOPE)
-
-  if(MSVC_TOOLCHAIN)
-    set(CMAKE_SHARED_LIBRARY_SUFFIXES_ORIGINAL ${CMAKE_FIND_LIBRARY_SUFFIXES})
-    # .dll isn't found by find_library with MSVC because .dll isn't included in
-    # CMAKE_FIND_LIBRARY_SUFFIXES.
-    list(APPEND CMAKE_FIND_LIBRARY_SUFFIXES "${CMAKE_SHARED_LIBRARY_SUFFIX}")
-  endif()
-  find_library(${prefix}_shared_lib
-               NAMES "${shared_lib_name}"
-               PATHS "${home}"
-               PATH_SUFFIXES ${ARROW_SEARCH_LIB_PATH_SUFFIXES}
-               NO_DEFAULT_PATH)
-  if(MSVC_TOOLCHAIN)
-    set(CMAKE_SHARED_LIBRARY_SUFFIXES ${CMAKE_FIND_LIBRARY_SUFFIXES_ORIGINAL})
-  endif()
-  set(shared_lib "${${prefix}_shared_lib}")
-  set(${prefix}_SHARED_LIB
-      "${shared_lib}"
-      PARENT_SCOPE)
-  if(shared_lib)
-    add_library(${target_shared} SHARED IMPORTED)
-    set_target_properties(${target_shared} PROPERTIES IMPORTED_LOCATION "${shared_lib}")
-    if(include_dir)
-      set_target_properties(${target_shared} PROPERTIES INTERFACE_INCLUDE_DIRECTORIES
-                                                        "${include_dir}")
-    endif()
-    find_library(${prefix}_import_lib
-                 NAMES "${import_lib_name}"
-                 PATHS "${home}"
-                 PATH_SUFFIXES ${ARROW_SEARCH_LIB_PATH_SUFFIXES}
-                 NO_DEFAULT_PATH)
-    set(import_lib "${${prefix}_import_lib}")
-    set(${prefix}_IMPORT_LIB
-        "${import_lib}"
-        PARENT_SCOPE)
-    if(import_lib)
-      set_target_properties(${target_shared} PROPERTIES IMPORTED_IMPLIB "${import_lib}")
-    endif()
-  endif()
-
-  find_library(${prefix}_static_lib
-               NAMES "${static_lib_name}"
-               PATHS "${home}"
-               PATH_SUFFIXES ${ARROW_SEARCH_LIB_PATH_SUFFIXES}
-               NO_DEFAULT_PATH)
-  set(static_lib "${${prefix}_static_lib}")
-  set(${prefix}_STATIC_LIB
-      "${static_lib}"
-      PARENT_SCOPE)
-  if(static_lib)
-    add_library(${target_static} STATIC IMPORTED)
-    set_target_properties(${target_static} PROPERTIES IMPORTED_LOCATION "${static_lib}")
-    if(include_dir)
-      set_target_properties(${target_static} PROPERTIES INTERFACE_INCLUDE_DIRECTORIES
-                                                        "${include_dir}")
-    endif()
-  endif()
-endmacro()
-
-# Internal macro only for arrow_find_package.
-#
-# Find package by CMake package configuration.
-macro(arrow_find_package_cmake_package_configuration)
-  find_package(${cmake_package_name} CONFIG)
-  if(${cmake_package_name}_FOUND)
-    set(${prefix}_USE_CMAKE_PACKAGE_CONFIG
-        TRUE
-        PARENT_SCOPE)
-    if(TARGET ${target_shared})
-      foreach(suffix ${ARROW_CONFIG_SUFFIXES})
-        get_target_property(shared_lib ${target_shared} IMPORTED_LOCATION${suffix})
-        if(shared_lib)
-          # Remove shared library version:
-          #   libarrow.so.100.0.0 -> libarrow.so
-          # Because ARROW_HOME and pkg-config approaches don't add
-          # shared library version.
-          string(REGEX REPLACE "(${CMAKE_SHARED_LIBRARY_SUFFIX})[.0-9]+$" "\\1"
-                               shared_lib "${shared_lib}")
-          set(${prefix}_SHARED_LIB
-              "${shared_lib}"
-              PARENT_SCOPE)
-          break()
-        endif()
-      endforeach()
-    endif()
-    if(TARGET ${target_static})
-      foreach(suffix ${ARROW_CONFIG_SUFFIXES})
-        get_target_property(static_lib ${target_static} IMPORTED_LOCATION${suffix})
-        if(static_lib)
-          set(${prefix}_STATIC_LIB
-              "${static_lib}"
-              PARENT_SCOPE)
-          break()
-        endif()
-      endforeach()
-    endif()
-  endif()
-endmacro()
-
-# Internal macro only for arrow_find_package.
-#
-# Find package by pkg-config.
-macro(arrow_find_package_pkg_config)
-  pkg_check_modules(${prefix}_PC ${pkg_config_name})
-  if(${prefix}_PC_FOUND)
-    set(${prefix}_USE_PKG_CONFIG
-        TRUE
-        PARENT_SCOPE)
-
-    set(include_dir "${${prefix}_PC_INCLUDEDIR}")
-    set(lib_dir "${${prefix}_PC_LIBDIR}")
-    set(shared_lib_paths "${${prefix}_PC_LINK_LIBRARIES}")
-    # Use the first shared library path as the IMPORTED_LOCATION
-    # for ${target_shared}. This assumes that the first shared library
-    # path is the shared library path for this module.
-    list(GET shared_lib_paths 0 first_shared_lib_path)
-    # Use the rest shared library paths as the INTERFACE_LINK_LIBRARIES
-    # for ${target_shared}. This assumes that the rest shared library
-    # paths are dependency library paths for this module.
-    list(LENGTH shared_lib_paths n_shared_lib_paths)
-    if(n_shared_lib_paths LESS_EQUAL 1)
-      set(rest_shared_lib_paths)
-    else()
-      list(SUBLIST
-           shared_lib_paths
-           1
-           -1
-           rest_shared_lib_paths)
-    endif()
-
-    set(${prefix}_VERSION
-        "${${prefix}_PC_VERSION}"
-        PARENT_SCOPE)
-    set(${prefix}_INCLUDE_DIR
-        "${include_dir}"
-        PARENT_SCOPE)
-    set(${prefix}_SHARED_LIB
-        "${first_shared_lib_path}"
-        PARENT_SCOPE)
-
-    add_library(${target_shared} SHARED IMPORTED)
-    set_target_properties(${target_shared}
-                          PROPERTIES INTERFACE_INCLUDE_DIRECTORIES "${include_dir}"
-                                     INTERFACE_LINK_LIBRARIES "${rest_shared_lib_paths}"
-                                     IMPORTED_LOCATION "${first_shared_lib_path}")
-    get_target_property(shared_lib ${target_shared} IMPORTED_LOCATION)
-
-    find_library(${prefix}_static_lib
-                 NAMES "${static_lib_name}"
-                 PATHS "${lib_dir}"
-                 NO_DEFAULT_PATH)
-    set(static_lib "${${prefix}_static_lib}")
-    set(${prefix}_STATIC_LIB
-        "${static_lib}"
-        PARENT_SCOPE)
-    if(static_lib)
-      add_library(${target_static} STATIC IMPORTED)
-      set_target_properties(${target_static}
-                            PROPERTIES INTERFACE_INCLUDE_DIRECTORIES "${include_dir}"
-                                       IMPORTED_LOCATION "${static_lib}")
-    endif()
-  endif()
-endmacro()
-
-function(arrow_find_package
-         prefix
-         home
-         base_name
-         header_path
-         cmake_package_name
-         pkg_config_name)
-  arrow_build_shared_library_name(shared_lib_name ${base_name})
-  arrow_build_import_library_name(import_lib_name ${base_name})
-  arrow_build_static_library_name(static_lib_name ${base_name})
-
-  set(target_shared ${base_name}_shared)
-  set(target_static ${base_name}_static)
-
-  if(home)
-    arrow_find_package_home()
-    set(${prefix}_FIND_APPROACH
-        "HOME: ${home}"
-        PARENT_SCOPE)
-  else()
-    arrow_find_package_cmake_package_configuration()
-    if(${cmake_package_name}_FOUND)
-      set(${prefix}_FIND_APPROACH
-          "CMake package configuration: ${cmake_package_name}"
-          PARENT_SCOPE)
-    else()
-      arrow_find_package_pkg_config()
-      set(${prefix}_FIND_APPROACH
-          "pkg-config: ${pkg_config_name}"
-          PARENT_SCOPE)
-    endif()
-  endif()
-
-  if(NOT include_dir)
-    if(TARGET ${target_shared})
-      get_target_property(include_dir ${target_shared} INTERFACE_INCLUDE_DIRECTORIES)
-    elseif(TARGET ${target_static})
-      get_target_property(include_dir ${target_static} INTERFACE_INCLUDE_DIRECTORIES)
-    endif()
-  endif()
-  if(include_dir)
-    set(${prefix}_INCLUDE_DIR
-        "${include_dir}"
-        PARENT_SCOPE)
-  endif()
-
-  if(shared_lib)
-    get_filename_component(lib_dir "${shared_lib}" DIRECTORY)
-  elseif(static_lib)
-    get_filename_component(lib_dir "${static_lib}" DIRECTORY)
-  else()
-    set(lib_dir NOTFOUND)
-  endif()
-  set(${prefix}_LIB_DIR
-      "${lib_dir}"
-      PARENT_SCOPE)
-  # For backward compatibility
-  set(${prefix}_LIBS
-      "${lib_dir}"
-      PARENT_SCOPE)
-endfunction()
-
-if(NOT "$ENV{ARROW_HOME}" STREQUAL "")
-  file(TO_CMAKE_PATH "$ENV{ARROW_HOME}" ARROW_HOME)
-endif()
-arrow_find_package(ARROW
-                   "${ARROW_HOME}"
-                   arrow
-                   arrow/api.h
-                   Arrow
-                   arrow)
-
-if(ARROW_HOME)
-  if(ARROW_INCLUDE_DIR)
-    file(READ "${ARROW_INCLUDE_DIR}/arrow/util/config.h" ARROW_CONFIG_H_CONTENT)
-    arrow_extract_macro_value(ARROW_VERSION_MAJOR "ARROW_VERSION_MAJOR"
-                              "${ARROW_CONFIG_H_CONTENT}")
-    arrow_extract_macro_value(ARROW_VERSION_MINOR "ARROW_VERSION_MINOR"
-                              "${ARROW_CONFIG_H_CONTENT}")
-    arrow_extract_macro_value(ARROW_VERSION_PATCH "ARROW_VERSION_PATCH"
-                              "${ARROW_CONFIG_H_CONTENT}")
-    if("${ARROW_VERSION_MAJOR}" STREQUAL ""
-       OR "${ARROW_VERSION_MINOR}" STREQUAL ""
-       OR "${ARROW_VERSION_PATCH}" STREQUAL "")
-      set(ARROW_VERSION "0.0.0")
-    else()
-      set(ARROW_VERSION
-          "${ARROW_VERSION_MAJOR}.${ARROW_VERSION_MINOR}.${ARROW_VERSION_PATCH}")
-    endif()
-
-    arrow_extract_macro_value(ARROW_SO_VERSION_QUOTED "ARROW_SO_VERSION"
-                              "${ARROW_CONFIG_H_CONTENT}")
-    string(REGEX REPLACE "^\"(.+)\"$" "\\1" ARROW_SO_VERSION "${ARROW_SO_VERSION_QUOTED}")
-    arrow_extract_macro_value(ARROW_FULL_SO_VERSION_QUOTED "ARROW_FULL_SO_VERSION"
-                              "${ARROW_CONFIG_H_CONTENT}")
-    string(REGEX REPLACE "^\"(.+)\"$" "\\1" ARROW_FULL_SO_VERSION
-                         "${ARROW_FULL_SO_VERSION_QUOTED}")
-  endif()
-else()
-  if(ARROW_USE_CMAKE_PACKAGE_CONFIG)
-    find_package(Arrow CONFIG)
-  elseif(ARROW_USE_PKG_CONFIG)
-    pkg_get_variable(ARROW_SO_VERSION arrow so_version)
-    pkg_get_variable(ARROW_FULL_SO_VERSION arrow full_so_version)
-  endif()
-endif()
-
-set(ARROW_ABI_VERSION ${ARROW_SO_VERSION})
-
-mark_as_advanced(ARROW_ABI_VERSION
-                 ARROW_CONFIG_SUFFIXES
-                 ARROW_FULL_SO_VERSION
-                 ARROW_IMPORT_LIB
-                 ARROW_INCLUDE_DIR
-                 ARROW_LIBS
-                 ARROW_LIB_DIR
-                 ARROW_SEARCH_LIB_PATH_SUFFIXES
-                 ARROW_SHARED_IMP_LIB
-                 ARROW_SHARED_LIB
-                 ARROW_SO_VERSION
-                 ARROW_STATIC_LIB
-                 ARROW_VERSION
-                 ARROW_VERSION_MAJOR
-                 ARROW_VERSION_MINOR
-                 ARROW_VERSION_PATCH)
-
-find_package_handle_standard_args(
-  Arrow
-  REQUIRED_VARS # The first required variable is shown
-                # in the found message. So this list is
-                # not sorted alphabetically.
-                ARROW_INCLUDE_DIR ARROW_LIB_DIR ARROW_FULL_SO_VERSION ARROW_SO_VERSION
-  VERSION_VAR ARROW_VERSION)
-set(ARROW_FOUND ${Arrow_FOUND})
-
-if(Arrow_FOUND AND NOT Arrow_FIND_QUIETLY)
-  message(STATUS "Arrow version: ${ARROW_VERSION} (${ARROW_FIND_APPROACH})")
-  message(STATUS "Arrow SO and ABI version: ${ARROW_SO_VERSION}")
-  message(STATUS "Arrow full SO version: ${ARROW_FULL_SO_VERSION}")
-  message(STATUS "Found the Arrow core shared library: ${ARROW_SHARED_LIB}")
-  message(STATUS "Found the Arrow core import library: ${ARROW_IMPORT_LIB}")
-  message(STATUS "Found the Arrow core static library: ${ARROW_STATIC_LIB}")

Review Comment:
   Thanks @kou for the explanation and @raulcd for opening the JIRA!



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] kou commented on a diff in pull request #13892: ARROW-12175: [C++] Fix CMake packages

Posted by GitBox <gi...@apache.org>.
kou commented on code in PR #13892:
URL: https://github.com/apache/arrow/pull/13892#discussion_r963670063


##########
cpp/cmake_modules/FindArrow.cmake:
##########
@@ -1,466 +0,0 @@
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-#   http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-# KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-
-# - Find Arrow (arrow/api.h, libarrow.a, libarrow.so)
-# This module defines
-#  ARROW_FOUND, whether Arrow has been found
-#  ARROW_FULL_SO_VERSION, full shared object version of found Arrow "100.0.0"
-#  ARROW_IMPORT_LIB, path to libarrow's import library (Windows only)
-#  ARROW_INCLUDE_DIR, directory containing headers
-#  ARROW_LIBS, deprecated. Use ARROW_LIB_DIR instead
-#  ARROW_LIB_DIR, directory containing Arrow libraries
-#  ARROW_SHARED_IMP_LIB, deprecated. Use ARROW_IMPORT_LIB instead
-#  ARROW_SHARED_LIB, path to libarrow's shared library
-#  ARROW_SO_VERSION, shared object version of found Arrow such as "100"
-#  ARROW_STATIC_LIB, path to libarrow.a
-#  ARROW_VERSION, version of found Arrow
-#  ARROW_VERSION_MAJOR, major version of found Arrow
-#  ARROW_VERSION_MINOR, minor version of found Arrow
-#  ARROW_VERSION_PATCH, patch version of found Arrow
-
-if(DEFINED ARROW_FOUND)
-  return()
-endif()
-
-find_package(PkgConfig)
-include(FindPackageHandleStandardArgs)
-
-if(WIN32 AND NOT MINGW)
-  # This is used to handle builds using e.g. clang in an MSVC setting.
-  set(MSVC_TOOLCHAIN TRUE)
-else()
-  set(MSVC_TOOLCHAIN FALSE)
-endif()
-
-set(ARROW_SEARCH_LIB_PATH_SUFFIXES)
-if(CMAKE_LIBRARY_ARCHITECTURE)
-  list(APPEND ARROW_SEARCH_LIB_PATH_SUFFIXES "lib/${CMAKE_LIBRARY_ARCHITECTURE}")
-endif()
-list(APPEND
-     ARROW_SEARCH_LIB_PATH_SUFFIXES
-     "lib64"
-     "lib32"
-     "lib"
-     "bin")
-set(ARROW_CONFIG_SUFFIXES
-    "_RELEASE"
-    "_RELWITHDEBINFO"
-    "_MINSIZEREL"
-    "_DEBUG"
-    "")
-if(CMAKE_BUILD_TYPE)
-  string(TOUPPER ${CMAKE_BUILD_TYPE} ARROW_CONFIG_SUFFIX_PREFERRED)
-  set(ARROW_CONFIG_SUFFIX_PREFERRED "_${ARROW_CONFIG_SUFFIX_PREFERRED}")
-  list(INSERT ARROW_CONFIG_SUFFIXES 0 "${ARROW_CONFIG_SUFFIX_PREFERRED}")
-endif()
-
-if(NOT DEFINED ARROW_MSVC_STATIC_LIB_SUFFIX)
-  if(MSVC_TOOLCHAIN)
-    set(ARROW_MSVC_STATIC_LIB_SUFFIX "_static")
-  else()
-    set(ARROW_MSVC_STATIC_LIB_SUFFIX "")
-  endif()
-endif()
-
-# Internal function.
-#
-# Set shared library name for ${base_name} to ${output_variable}.
-#
-# Example:
-#   arrow_build_shared_library_name(ARROW_SHARED_LIBRARY_NAME arrow)
-#   # -> ARROW_SHARED_LIBRARY_NAME=libarrow.so on Linux
-#   # -> ARROW_SHARED_LIBRARY_NAME=libarrow.dylib on macOS
-#   # -> ARROW_SHARED_LIBRARY_NAME=arrow.dll with MSVC on Windows
-#   # -> ARROW_SHARED_LIBRARY_NAME=libarrow.dll with MinGW on Windows
-function(arrow_build_shared_library_name output_variable base_name)
-  set(${output_variable}
-      "${CMAKE_SHARED_LIBRARY_PREFIX}${base_name}${CMAKE_SHARED_LIBRARY_SUFFIX}"
-      PARENT_SCOPE)
-endfunction()
-
-# Internal function.
-#
-# Set import library name for ${base_name} to ${output_variable}.
-# This is useful only for MSVC build. Import library is used only
-# with MSVC build.
-#
-# Example:
-#   arrow_build_import_library_name(ARROW_IMPORT_LIBRARY_NAME arrow)
-#   # -> ARROW_IMPORT_LIBRARY_NAME=arrow on Linux (meaningless)
-#   # -> ARROW_IMPORT_LIBRARY_NAME=arrow on macOS (meaningless)
-#   # -> ARROW_IMPORT_LIBRARY_NAME=arrow.lib with MSVC on Windows
-#   # -> ARROW_IMPORT_LIBRARY_NAME=libarrow.dll.a with MinGW on Windows
-function(arrow_build_import_library_name output_variable base_name)
-  set(${output_variable}
-      "${CMAKE_IMPORT_LIBRARY_PREFIX}${base_name}${CMAKE_IMPORT_LIBRARY_SUFFIX}"
-      PARENT_SCOPE)
-endfunction()
-
-# Internal function.
-#
-# Set static library name for ${base_name} to ${output_variable}.
-#
-# Example:
-#   arrow_build_static_library_name(ARROW_STATIC_LIBRARY_NAME arrow)
-#   # -> ARROW_STATIC_LIBRARY_NAME=libarrow.a on Linux
-#   # -> ARROW_STATIC_LIBRARY_NAME=libarrow.a on macOS
-#   # -> ARROW_STATIC_LIBRARY_NAME=arrow.lib with MSVC on Windows
-#   # -> ARROW_STATIC_LIBRARY_NAME=libarrow.dll.a with MinGW on Windows
-function(arrow_build_static_library_name output_variable base_name)
-  set(${output_variable}
-      "${CMAKE_STATIC_LIBRARY_PREFIX}${base_name}${ARROW_MSVC_STATIC_LIB_SUFFIX}${CMAKE_STATIC_LIBRARY_SUFFIX}"
-      PARENT_SCOPE)
-endfunction()
-
-# Internal function.
-#
-# Set macro value for ${macro_name} in ${header_content} to ${output_variable}.
-#
-# Example:
-#   arrow_extract_macro_value(version_major
-#                             "ARROW_VERSION_MAJOR"
-#                             "#define ARROW_VERSION_MAJOR 1.0.0")
-#   # -> version_major=1.0.0
-function(arrow_extract_macro_value output_variable macro_name header_content)
-  string(REGEX MATCH "#define +${macro_name} +[^\r\n]+" macro_definition
-               "${header_content}")
-  string(REGEX REPLACE "^#define +${macro_name} +(.+)$" "\\1" macro_value
-                       "${macro_definition}")
-  set(${output_variable}
-      "${macro_value}"
-      PARENT_SCOPE)
-endfunction()
-
-# Internal macro only for arrow_find_package.
-#
-# Find package in HOME.
-macro(arrow_find_package_home)
-  find_path(${prefix}_include_dir "${header_path}"
-            PATHS "${home}"
-            PATH_SUFFIXES "include"
-            NO_DEFAULT_PATH)
-  set(include_dir "${${prefix}_include_dir}")
-  set(${prefix}_INCLUDE_DIR
-      "${include_dir}"
-      PARENT_SCOPE)
-
-  if(MSVC_TOOLCHAIN)
-    set(CMAKE_SHARED_LIBRARY_SUFFIXES_ORIGINAL ${CMAKE_FIND_LIBRARY_SUFFIXES})
-    # .dll isn't found by find_library with MSVC because .dll isn't included in
-    # CMAKE_FIND_LIBRARY_SUFFIXES.
-    list(APPEND CMAKE_FIND_LIBRARY_SUFFIXES "${CMAKE_SHARED_LIBRARY_SUFFIX}")
-  endif()
-  find_library(${prefix}_shared_lib
-               NAMES "${shared_lib_name}"
-               PATHS "${home}"
-               PATH_SUFFIXES ${ARROW_SEARCH_LIB_PATH_SUFFIXES}
-               NO_DEFAULT_PATH)
-  if(MSVC_TOOLCHAIN)
-    set(CMAKE_SHARED_LIBRARY_SUFFIXES ${CMAKE_FIND_LIBRARY_SUFFIXES_ORIGINAL})
-  endif()
-  set(shared_lib "${${prefix}_shared_lib}")
-  set(${prefix}_SHARED_LIB
-      "${shared_lib}"
-      PARENT_SCOPE)
-  if(shared_lib)
-    add_library(${target_shared} SHARED IMPORTED)
-    set_target_properties(${target_shared} PROPERTIES IMPORTED_LOCATION "${shared_lib}")
-    if(include_dir)
-      set_target_properties(${target_shared} PROPERTIES INTERFACE_INCLUDE_DIRECTORIES
-                                                        "${include_dir}")
-    endif()
-    find_library(${prefix}_import_lib
-                 NAMES "${import_lib_name}"
-                 PATHS "${home}"
-                 PATH_SUFFIXES ${ARROW_SEARCH_LIB_PATH_SUFFIXES}
-                 NO_DEFAULT_PATH)
-    set(import_lib "${${prefix}_import_lib}")
-    set(${prefix}_IMPORT_LIB
-        "${import_lib}"
-        PARENT_SCOPE)
-    if(import_lib)
-      set_target_properties(${target_shared} PROPERTIES IMPORTED_IMPLIB "${import_lib}")
-    endif()
-  endif()
-
-  find_library(${prefix}_static_lib
-               NAMES "${static_lib_name}"
-               PATHS "${home}"
-               PATH_SUFFIXES ${ARROW_SEARCH_LIB_PATH_SUFFIXES}
-               NO_DEFAULT_PATH)
-  set(static_lib "${${prefix}_static_lib}")
-  set(${prefix}_STATIC_LIB
-      "${static_lib}"
-      PARENT_SCOPE)
-  if(static_lib)
-    add_library(${target_static} STATIC IMPORTED)
-    set_target_properties(${target_static} PROPERTIES IMPORTED_LOCATION "${static_lib}")
-    if(include_dir)
-      set_target_properties(${target_static} PROPERTIES INTERFACE_INCLUDE_DIRECTORIES
-                                                        "${include_dir}")
-    endif()
-  endif()
-endmacro()
-
-# Internal macro only for arrow_find_package.
-#
-# Find package by CMake package configuration.
-macro(arrow_find_package_cmake_package_configuration)
-  find_package(${cmake_package_name} CONFIG)
-  if(${cmake_package_name}_FOUND)
-    set(${prefix}_USE_CMAKE_PACKAGE_CONFIG
-        TRUE
-        PARENT_SCOPE)
-    if(TARGET ${target_shared})
-      foreach(suffix ${ARROW_CONFIG_SUFFIXES})
-        get_target_property(shared_lib ${target_shared} IMPORTED_LOCATION${suffix})
-        if(shared_lib)
-          # Remove shared library version:
-          #   libarrow.so.100.0.0 -> libarrow.so
-          # Because ARROW_HOME and pkg-config approaches don't add
-          # shared library version.
-          string(REGEX REPLACE "(${CMAKE_SHARED_LIBRARY_SUFFIX})[.0-9]+$" "\\1"
-                               shared_lib "${shared_lib}")
-          set(${prefix}_SHARED_LIB
-              "${shared_lib}"
-              PARENT_SCOPE)
-          break()
-        endif()
-      endforeach()
-    endif()
-    if(TARGET ${target_static})
-      foreach(suffix ${ARROW_CONFIG_SUFFIXES})
-        get_target_property(static_lib ${target_static} IMPORTED_LOCATION${suffix})
-        if(static_lib)
-          set(${prefix}_STATIC_LIB
-              "${static_lib}"
-              PARENT_SCOPE)
-          break()
-        endif()
-      endforeach()
-    endif()
-  endif()
-endmacro()
-
-# Internal macro only for arrow_find_package.
-#
-# Find package by pkg-config.
-macro(arrow_find_package_pkg_config)
-  pkg_check_modules(${prefix}_PC ${pkg_config_name})
-  if(${prefix}_PC_FOUND)
-    set(${prefix}_USE_PKG_CONFIG
-        TRUE
-        PARENT_SCOPE)
-
-    set(include_dir "${${prefix}_PC_INCLUDEDIR}")
-    set(lib_dir "${${prefix}_PC_LIBDIR}")
-    set(shared_lib_paths "${${prefix}_PC_LINK_LIBRARIES}")
-    # Use the first shared library path as the IMPORTED_LOCATION
-    # for ${target_shared}. This assumes that the first shared library
-    # path is the shared library path for this module.
-    list(GET shared_lib_paths 0 first_shared_lib_path)
-    # Use the rest shared library paths as the INTERFACE_LINK_LIBRARIES
-    # for ${target_shared}. This assumes that the rest shared library
-    # paths are dependency library paths for this module.
-    list(LENGTH shared_lib_paths n_shared_lib_paths)
-    if(n_shared_lib_paths LESS_EQUAL 1)
-      set(rest_shared_lib_paths)
-    else()
-      list(SUBLIST
-           shared_lib_paths
-           1
-           -1
-           rest_shared_lib_paths)
-    endif()
-
-    set(${prefix}_VERSION
-        "${${prefix}_PC_VERSION}"
-        PARENT_SCOPE)
-    set(${prefix}_INCLUDE_DIR
-        "${include_dir}"
-        PARENT_SCOPE)
-    set(${prefix}_SHARED_LIB
-        "${first_shared_lib_path}"
-        PARENT_SCOPE)
-
-    add_library(${target_shared} SHARED IMPORTED)
-    set_target_properties(${target_shared}
-                          PROPERTIES INTERFACE_INCLUDE_DIRECTORIES "${include_dir}"
-                                     INTERFACE_LINK_LIBRARIES "${rest_shared_lib_paths}"
-                                     IMPORTED_LOCATION "${first_shared_lib_path}")
-    get_target_property(shared_lib ${target_shared} IMPORTED_LOCATION)
-
-    find_library(${prefix}_static_lib
-                 NAMES "${static_lib_name}"
-                 PATHS "${lib_dir}"
-                 NO_DEFAULT_PATH)
-    set(static_lib "${${prefix}_static_lib}")
-    set(${prefix}_STATIC_LIB
-        "${static_lib}"
-        PARENT_SCOPE)
-    if(static_lib)
-      add_library(${target_static} STATIC IMPORTED)
-      set_target_properties(${target_static}
-                            PROPERTIES INTERFACE_INCLUDE_DIRECTORIES "${include_dir}"
-                                       IMPORTED_LOCATION "${static_lib}")
-    endif()
-  endif()
-endmacro()
-
-function(arrow_find_package
-         prefix
-         home
-         base_name
-         header_path
-         cmake_package_name
-         pkg_config_name)
-  arrow_build_shared_library_name(shared_lib_name ${base_name})
-  arrow_build_import_library_name(import_lib_name ${base_name})
-  arrow_build_static_library_name(static_lib_name ${base_name})
-
-  set(target_shared ${base_name}_shared)
-  set(target_static ${base_name}_static)
-
-  if(home)
-    arrow_find_package_home()
-    set(${prefix}_FIND_APPROACH
-        "HOME: ${home}"
-        PARENT_SCOPE)
-  else()
-    arrow_find_package_cmake_package_configuration()
-    if(${cmake_package_name}_FOUND)
-      set(${prefix}_FIND_APPROACH
-          "CMake package configuration: ${cmake_package_name}"
-          PARENT_SCOPE)
-    else()
-      arrow_find_package_pkg_config()
-      set(${prefix}_FIND_APPROACH
-          "pkg-config: ${pkg_config_name}"
-          PARENT_SCOPE)
-    endif()
-  endif()
-
-  if(NOT include_dir)
-    if(TARGET ${target_shared})
-      get_target_property(include_dir ${target_shared} INTERFACE_INCLUDE_DIRECTORIES)
-    elseif(TARGET ${target_static})
-      get_target_property(include_dir ${target_static} INTERFACE_INCLUDE_DIRECTORIES)
-    endif()
-  endif()
-  if(include_dir)
-    set(${prefix}_INCLUDE_DIR
-        "${include_dir}"
-        PARENT_SCOPE)
-  endif()
-
-  if(shared_lib)
-    get_filename_component(lib_dir "${shared_lib}" DIRECTORY)
-  elseif(static_lib)
-    get_filename_component(lib_dir "${static_lib}" DIRECTORY)
-  else()
-    set(lib_dir NOTFOUND)
-  endif()
-  set(${prefix}_LIB_DIR
-      "${lib_dir}"
-      PARENT_SCOPE)
-  # For backward compatibility
-  set(${prefix}_LIBS
-      "${lib_dir}"
-      PARENT_SCOPE)
-endfunction()
-
-if(NOT "$ENV{ARROW_HOME}" STREQUAL "")
-  file(TO_CMAKE_PATH "$ENV{ARROW_HOME}" ARROW_HOME)
-endif()
-arrow_find_package(ARROW
-                   "${ARROW_HOME}"
-                   arrow
-                   arrow/api.h
-                   Arrow
-                   arrow)
-
-if(ARROW_HOME)
-  if(ARROW_INCLUDE_DIR)
-    file(READ "${ARROW_INCLUDE_DIR}/arrow/util/config.h" ARROW_CONFIG_H_CONTENT)
-    arrow_extract_macro_value(ARROW_VERSION_MAJOR "ARROW_VERSION_MAJOR"
-                              "${ARROW_CONFIG_H_CONTENT}")
-    arrow_extract_macro_value(ARROW_VERSION_MINOR "ARROW_VERSION_MINOR"
-                              "${ARROW_CONFIG_H_CONTENT}")
-    arrow_extract_macro_value(ARROW_VERSION_PATCH "ARROW_VERSION_PATCH"
-                              "${ARROW_CONFIG_H_CONTENT}")
-    if("${ARROW_VERSION_MAJOR}" STREQUAL ""
-       OR "${ARROW_VERSION_MINOR}" STREQUAL ""
-       OR "${ARROW_VERSION_PATCH}" STREQUAL "")
-      set(ARROW_VERSION "0.0.0")
-    else()
-      set(ARROW_VERSION
-          "${ARROW_VERSION_MAJOR}.${ARROW_VERSION_MINOR}.${ARROW_VERSION_PATCH}")
-    endif()
-
-    arrow_extract_macro_value(ARROW_SO_VERSION_QUOTED "ARROW_SO_VERSION"
-                              "${ARROW_CONFIG_H_CONTENT}")
-    string(REGEX REPLACE "^\"(.+)\"$" "\\1" ARROW_SO_VERSION "${ARROW_SO_VERSION_QUOTED}")
-    arrow_extract_macro_value(ARROW_FULL_SO_VERSION_QUOTED "ARROW_FULL_SO_VERSION"
-                              "${ARROW_CONFIG_H_CONTENT}")
-    string(REGEX REPLACE "^\"(.+)\"$" "\\1" ARROW_FULL_SO_VERSION
-                         "${ARROW_FULL_SO_VERSION_QUOTED}")
-  endif()
-else()
-  if(ARROW_USE_CMAKE_PACKAGE_CONFIG)
-    find_package(Arrow CONFIG)
-  elseif(ARROW_USE_PKG_CONFIG)
-    pkg_get_variable(ARROW_SO_VERSION arrow so_version)
-    pkg_get_variable(ARROW_FULL_SO_VERSION arrow full_so_version)
-  endif()
-endif()
-
-set(ARROW_ABI_VERSION ${ARROW_SO_VERSION})
-
-mark_as_advanced(ARROW_ABI_VERSION
-                 ARROW_CONFIG_SUFFIXES
-                 ARROW_FULL_SO_VERSION
-                 ARROW_IMPORT_LIB
-                 ARROW_INCLUDE_DIR
-                 ARROW_LIBS
-                 ARROW_LIB_DIR
-                 ARROW_SEARCH_LIB_PATH_SUFFIXES
-                 ARROW_SHARED_IMP_LIB
-                 ARROW_SHARED_LIB
-                 ARROW_SO_VERSION
-                 ARROW_STATIC_LIB
-                 ARROW_VERSION
-                 ARROW_VERSION_MAJOR
-                 ARROW_VERSION_MINOR
-                 ARROW_VERSION_PATCH)
-
-find_package_handle_standard_args(
-  Arrow
-  REQUIRED_VARS # The first required variable is shown
-                # in the found message. So this list is
-                # not sorted alphabetically.
-                ARROW_INCLUDE_DIR ARROW_LIB_DIR ARROW_FULL_SO_VERSION ARROW_SO_VERSION
-  VERSION_VAR ARROW_VERSION)
-set(ARROW_FOUND ${Arrow_FOUND})
-
-if(Arrow_FOUND AND NOT Arrow_FIND_QUIETLY)
-  message(STATUS "Arrow version: ${ARROW_VERSION} (${ARROW_FIND_APPROACH})")
-  message(STATUS "Arrow SO and ABI version: ${ARROW_SO_VERSION}")
-  message(STATUS "Arrow full SO version: ${ARROW_FULL_SO_VERSION}")
-  message(STATUS "Found the Arrow core shared library: ${ARROW_SHARED_LIB}")
-  message(STATUS "Found the Arrow core import library: ${ARROW_IMPORT_LIB}")
-  message(STATUS "Found the Arrow core static library: ${ARROW_STATIC_LIB}")

Review Comment:
   Yes. We need to add `message(STATUS ...)` to `ArrowConfig.cmake.in` for it. `cmake --debug-print` prints more details but it will not show these information. 
   
   But `*Config.cmake` doesn't use `message(STATUS ...)` in general. If we want to add `message(STATUS ...)`, it's better that we check `Arrow_FIND_QUIETLY` like the following:
   
   ```cmake
   if(NOT Arrow_FIND_QUIETLY)
     message(STATUS ...)
   endif()
   ```
   
   `Arrow_FIND_QUIETLY` is `TRUE` only when an user specify `QUIET` explicitly like `find_package(Arrow QUIET)`.
   
   See also; https://cmake.org/cmake/help/latest/command/find_package.html#package-file-interface-variables



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] kou commented on pull request #13892: ARROW-12175: [C++] Fix CMake packages

Posted by GitBox <gi...@apache.org>.
kou commented on PR #13892:
URL: https://github.com/apache/arrow/pull/13892#issuecomment-1231141187

   No objection.
   I merge this.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] github-actions[bot] commented on pull request #13892: ARROW-12175: [C++] Fix CMake packages

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on PR #13892:
URL: https://github.com/apache/arrow/pull/13892#issuecomment-1229081575

   Revision: 986367472417185406d0a3da84bf647ae80a57e8
   
   Submitted crossbow builds: [ursacomputing/crossbow @ actions-4cdb949f53](https://github.com/ursacomputing/crossbow/branches/all?query=actions-4cdb949f53)
   
   |Task|Status|
   |----|------|
   |conda-linux-gcc-py310-cpu|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-4cdb949f53-azure-conda-linux-gcc-py310-cpu)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-4cdb949f53-azure-conda-linux-gcc-py310-cpu)|


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] github-actions[bot] commented on pull request #13892: ARROW-12175: [C++] Fix CMake packages

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on PR #13892:
URL: https://github.com/apache/arrow/pull/13892#issuecomment-1229348989

   Revision: ac386f33133226c280286743d678f0d16a6a5b39
   
   Submitted crossbow builds: [ursacomputing/crossbow @ actions-5463167e1d](https://github.com/ursacomputing/crossbow/branches/all?query=actions-5463167e1d)
   
   |Task|Status|
   |----|------|
   |almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-almalinux-8-amd64)|
   |almalinux-8-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-5463167e1d-travis-almalinux-8-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |almalinux-9-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-almalinux-9-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-almalinux-9-amd64)|
   |almalinux-9-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-5463167e1d-travis-almalinux-9-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |amazon-linux-2-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-amazon-linux-2-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-amazon-linux-2-amd64)|
   |amazon-linux-2-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-5463167e1d-travis-amazon-linux-2-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |centos-7-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-centos-7-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-centos-7-amd64)|
   |centos-8-stream-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-centos-8-stream-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-centos-8-stream-amd64)|
   |centos-8-stream-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-5463167e1d-travis-centos-8-stream-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |centos-9-stream-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-centos-9-stream-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-centos-9-stream-amd64)|
   |centos-9-stream-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-5463167e1d-travis-centos-9-stream-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |conan-maximum|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-conan-maximum)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-conan-maximum)|
   |conan-minimum|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-conan-minimum)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-conan-minimum)|
   |conda-clean|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-5463167e1d-azure-conda-clean)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-5463167e1d-azure-conda-clean)|
   |conda-linux-gcc-py310-arm64|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-5463167e1d-azure-conda-linux-gcc-py310-arm64)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-5463167e1d-azure-conda-linux-gcc-py310-arm64)|
   |conda-linux-gcc-py310-cpu|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-5463167e1d-azure-conda-linux-gcc-py310-cpu)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-5463167e1d-azure-conda-linux-gcc-py310-cpu)|
   |conda-linux-gcc-py310-cuda|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-5463167e1d-azure-conda-linux-gcc-py310-cuda)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-5463167e1d-azure-conda-linux-gcc-py310-cuda)|
   |conda-linux-gcc-py310-ppc64le|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-5463167e1d-azure-conda-linux-gcc-py310-ppc64le)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-5463167e1d-azure-conda-linux-gcc-py310-ppc64le)|
   |conda-linux-gcc-py37-arm64|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-5463167e1d-azure-conda-linux-gcc-py37-arm64)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-5463167e1d-azure-conda-linux-gcc-py37-arm64)|
   |conda-linux-gcc-py37-cpu-r40|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-5463167e1d-azure-conda-linux-gcc-py37-cpu-r40)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-5463167e1d-azure-conda-linux-gcc-py37-cpu-r40)|
   |conda-linux-gcc-py37-cpu-r41|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-5463167e1d-azure-conda-linux-gcc-py37-cpu-r41)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-5463167e1d-azure-conda-linux-gcc-py37-cpu-r41)|
   |conda-linux-gcc-py37-cuda|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-5463167e1d-azure-conda-linux-gcc-py37-cuda)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-5463167e1d-azure-conda-linux-gcc-py37-cuda)|
   |conda-linux-gcc-py37-ppc64le|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-5463167e1d-azure-conda-linux-gcc-py37-ppc64le)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-5463167e1d-azure-conda-linux-gcc-py37-ppc64le)|
   |conda-linux-gcc-py38-arm64|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-5463167e1d-azure-conda-linux-gcc-py38-arm64)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-5463167e1d-azure-conda-linux-gcc-py38-arm64)|
   |conda-linux-gcc-py38-cpu|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-5463167e1d-azure-conda-linux-gcc-py38-cpu)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-5463167e1d-azure-conda-linux-gcc-py38-cpu)|
   |conda-linux-gcc-py38-cuda|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-5463167e1d-azure-conda-linux-gcc-py38-cuda)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-5463167e1d-azure-conda-linux-gcc-py38-cuda)|
   |conda-linux-gcc-py38-ppc64le|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-5463167e1d-azure-conda-linux-gcc-py38-ppc64le)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-5463167e1d-azure-conda-linux-gcc-py38-ppc64le)|
   |conda-linux-gcc-py39-arm64|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-5463167e1d-azure-conda-linux-gcc-py39-arm64)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-5463167e1d-azure-conda-linux-gcc-py39-arm64)|
   |conda-linux-gcc-py39-cpu|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-5463167e1d-azure-conda-linux-gcc-py39-cpu)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-5463167e1d-azure-conda-linux-gcc-py39-cpu)|
   |conda-linux-gcc-py39-cuda|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-5463167e1d-azure-conda-linux-gcc-py39-cuda)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-5463167e1d-azure-conda-linux-gcc-py39-cuda)|
   |conda-linux-gcc-py39-ppc64le|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-5463167e1d-azure-conda-linux-gcc-py39-ppc64le)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-5463167e1d-azure-conda-linux-gcc-py39-ppc64le)|
   |conda-osx-arm64-clang-py310|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-5463167e1d-azure-conda-osx-arm64-clang-py310)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-5463167e1d-azure-conda-osx-arm64-clang-py310)|
   |conda-osx-arm64-clang-py38|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-5463167e1d-azure-conda-osx-arm64-clang-py38)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-5463167e1d-azure-conda-osx-arm64-clang-py38)|
   |conda-osx-arm64-clang-py39|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-5463167e1d-azure-conda-osx-arm64-clang-py39)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-5463167e1d-azure-conda-osx-arm64-clang-py39)|
   |conda-osx-clang-py310|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-5463167e1d-azure-conda-osx-clang-py310)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-5463167e1d-azure-conda-osx-clang-py310)|
   |conda-osx-clang-py37-r40|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-5463167e1d-azure-conda-osx-clang-py37-r40)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-5463167e1d-azure-conda-osx-clang-py37-r40)|
   |conda-osx-clang-py37-r41|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-5463167e1d-azure-conda-osx-clang-py37-r41)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-5463167e1d-azure-conda-osx-clang-py37-r41)|
   |conda-osx-clang-py38|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-5463167e1d-azure-conda-osx-clang-py38)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-5463167e1d-azure-conda-osx-clang-py38)|
   |conda-osx-clang-py39|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-5463167e1d-azure-conda-osx-clang-py39)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-5463167e1d-azure-conda-osx-clang-py39)|
   |conda-win-vs2017-py310|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-5463167e1d-azure-conda-win-vs2017-py310)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-5463167e1d-azure-conda-win-vs2017-py310)|
   |conda-win-vs2017-py37-r40|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-5463167e1d-azure-conda-win-vs2017-py37-r40)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-5463167e1d-azure-conda-win-vs2017-py37-r40)|
   |conda-win-vs2017-py37-r41|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-5463167e1d-azure-conda-win-vs2017-py37-r41)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-5463167e1d-azure-conda-win-vs2017-py37-r41)|
   |conda-win-vs2017-py38|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-5463167e1d-azure-conda-win-vs2017-py38)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-5463167e1d-azure-conda-win-vs2017-py38)|
   |conda-win-vs2017-py39|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-5463167e1d-azure-conda-win-vs2017-py39)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-5463167e1d-azure-conda-win-vs2017-py39)|
   |debian-bookworm-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-debian-bookworm-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-debian-bookworm-amd64)|
   |debian-bookworm-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-5463167e1d-travis-debian-bookworm-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |debian-bullseye-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-debian-bullseye-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-debian-bullseye-amd64)|
   |debian-bullseye-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-5463167e1d-travis-debian-bullseye-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |example-cpp-minimal-build-static|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-example-cpp-minimal-build-static)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-example-cpp-minimal-build-static)|
   |example-cpp-minimal-build-static-system-dependency|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-example-cpp-minimal-build-static-system-dependency)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-example-cpp-minimal-build-static-system-dependency)|
   |example-python-minimal-build-fedora-conda|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-example-python-minimal-build-fedora-conda)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-example-python-minimal-build-fedora-conda)|
   |example-python-minimal-build-ubuntu-venv|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-example-python-minimal-build-ubuntu-venv)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-example-python-minimal-build-ubuntu-venv)|
   |homebrew-cpp|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-homebrew-cpp)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-homebrew-cpp)|
   |homebrew-r-autobrew|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-homebrew-r-autobrew)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-homebrew-r-autobrew)|
   |homebrew-r-brew|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-homebrew-r-brew)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-homebrew-r-brew)|
   |java-jars|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-java-jars)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-java-jars)|
   |nuget|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-nuget)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-nuget)|
   |python-sdist|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-python-sdist)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-python-sdist)|
   |r-binary-packages|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-r-binary-packages)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-r-binary-packages)|
   |test-alpine-linux-cpp|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-test-alpine-linux-cpp)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-test-alpine-linux-cpp)|
   |test-build-cpp-fuzz|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-test-build-cpp-fuzz)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-test-build-cpp-fuzz)|
   |test-build-vcpkg-win|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-test-build-vcpkg-win)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-test-build-vcpkg-win)|
   |test-conda-cpp|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-test-conda-cpp)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-test-conda-cpp)|
   |test-conda-cpp-valgrind|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-5463167e1d-azure-test-conda-cpp-valgrind)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-5463167e1d-azure-test-conda-cpp-valgrind)|
   |test-conda-python-3.10|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-test-conda-python-3.10)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-test-conda-python-3.10)|
   |test-conda-python-3.7|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-test-conda-python-3.7)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-test-conda-python-3.7)|
   |test-conda-python-3.7-hdfs-2.9.2|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-test-conda-python-3.7-hdfs-2.9.2)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-test-conda-python-3.7-hdfs-2.9.2)|
   |test-conda-python-3.7-hdfs-3.2.1|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-test-conda-python-3.7-hdfs-3.2.1)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-test-conda-python-3.7-hdfs-3.2.1)|
   |test-conda-python-3.7-kartothek-latest|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-test-conda-python-3.7-kartothek-latest)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-test-conda-python-3.7-kartothek-latest)|
   |test-conda-python-3.7-kartothek-master|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-test-conda-python-3.7-kartothek-master)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-test-conda-python-3.7-kartothek-master)|
   |test-conda-python-3.7-pandas-0.24|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-test-conda-python-3.7-pandas-0.24)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-test-conda-python-3.7-pandas-0.24)|
   |test-conda-python-3.7-pandas-latest|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-test-conda-python-3.7-pandas-latest)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-test-conda-python-3.7-pandas-latest)|
   |test-conda-python-3.7-spark-v3.1.2|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-test-conda-python-3.7-spark-v3.1.2)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-test-conda-python-3.7-spark-v3.1.2)|
   |test-conda-python-3.8|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-test-conda-python-3.8)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-test-conda-python-3.8)|
   |test-conda-python-3.8-hypothesis|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-test-conda-python-3.8-hypothesis)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-test-conda-python-3.8-hypothesis)|
   |test-conda-python-3.8-pandas-latest|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-test-conda-python-3.8-pandas-latest)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-test-conda-python-3.8-pandas-latest)|
   |test-conda-python-3.8-pandas-nightly|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-test-conda-python-3.8-pandas-nightly)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-test-conda-python-3.8-pandas-nightly)|
   |test-conda-python-3.8-spark-v3.2.0|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-test-conda-python-3.8-spark-v3.2.0)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-test-conda-python-3.8-spark-v3.2.0)|
   |test-conda-python-3.9|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-test-conda-python-3.9)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-test-conda-python-3.9)|
   |test-conda-python-3.9-dask-latest|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-test-conda-python-3.9-dask-latest)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-test-conda-python-3.9-dask-latest)|
   |test-conda-python-3.9-dask-master|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-test-conda-python-3.9-dask-master)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-test-conda-python-3.9-dask-master)|
   |test-conda-python-3.9-pandas-master|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-test-conda-python-3.9-pandas-master)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-test-conda-python-3.9-pandas-master)|
   |test-conda-python-3.9-spark-master|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-test-conda-python-3.9-spark-master)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-test-conda-python-3.9-spark-master)|
   |test-debian-10-cpp-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-test-debian-10-cpp-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-test-debian-10-cpp-amd64)|
   |test-debian-10-cpp-i386|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-test-debian-10-cpp-i386)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-test-debian-10-cpp-i386)|
   |test-debian-11-cpp-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-test-debian-11-cpp-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-test-debian-11-cpp-amd64)|
   |test-debian-11-cpp-i386|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-test-debian-11-cpp-i386)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-test-debian-11-cpp-i386)|
   |test-debian-11-go-1.16|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-5463167e1d-azure-test-debian-11-go-1.16)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-5463167e1d-azure-test-debian-11-go-1.16)|
   |test-debian-11-python-3|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-5463167e1d-azure-test-debian-11-python-3)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-5463167e1d-azure-test-debian-11-python-3)|
   |test-debian-c-glib|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-test-debian-c-glib)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-test-debian-c-glib)|
   |test-debian-ruby|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-test-debian-ruby)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-test-debian-ruby)|
   |test-fedora-35-cpp|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-test-fedora-35-cpp)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-test-fedora-35-cpp)|
   |test-fedora-35-python-3|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-5463167e1d-azure-test-fedora-35-python-3)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-5463167e1d-azure-test-fedora-35-python-3)|
   |test-fedora-r-clang-sanitizer|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-5463167e1d-azure-test-fedora-r-clang-sanitizer)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-5463167e1d-azure-test-fedora-r-clang-sanitizer)|
   |test-r-arrow-backwards-compatibility|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-test-r-arrow-backwards-compatibility)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-test-r-arrow-backwards-compatibility)|
   |test-r-depsource-bundled|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-5463167e1d-azure-test-r-depsource-bundled)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-5463167e1d-azure-test-r-depsource-bundled)|
   |test-r-depsource-system|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-test-r-depsource-system)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-test-r-depsource-system)|
   |test-r-dev-duckdb|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-test-r-dev-duckdb)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-test-r-dev-duckdb)|
   |test-r-devdocs|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-test-r-devdocs)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-test-r-devdocs)|
   |test-r-gcc-11|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-test-r-gcc-11)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-test-r-gcc-11)|
   |test-r-gcc-12|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-test-r-gcc-12)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-test-r-gcc-12)|
   |test-r-install-local|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-test-r-install-local)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-test-r-install-local)|
   |test-r-linux-as-cran|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-test-r-linux-as-cran)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-test-r-linux-as-cran)|
   |test-r-linux-rchk|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-test-r-linux-rchk)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-test-r-linux-rchk)|
   |test-r-linux-valgrind|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-5463167e1d-azure-test-r-linux-valgrind)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-5463167e1d-azure-test-r-linux-valgrind)|
   |test-r-minimal-build|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-5463167e1d-azure-test-r-minimal-build)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-5463167e1d-azure-test-r-minimal-build)|
   |test-r-offline-maximal|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-test-r-offline-maximal)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-test-r-offline-maximal)|
   |test-r-offline-minimal|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-5463167e1d-azure-test-r-offline-minimal)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-5463167e1d-azure-test-r-offline-minimal)|
   |test-r-rhub-debian-gcc-devel-lto-latest|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-5463167e1d-azure-test-r-rhub-debian-gcc-devel-lto-latest)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-5463167e1d-azure-test-r-rhub-debian-gcc-devel-lto-latest)|
   |test-r-rhub-debian-gcc-release-custom-ccache|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-5463167e1d-azure-test-r-rhub-debian-gcc-release-custom-ccache)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-5463167e1d-azure-test-r-rhub-debian-gcc-release-custom-ccache)|
   |test-r-rhub-ubuntu-gcc-release-latest|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-5463167e1d-azure-test-r-rhub-ubuntu-gcc-release-latest)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-5463167e1d-azure-test-r-rhub-ubuntu-gcc-release-latest)|
   |test-r-rocker-r-base-latest|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-5463167e1d-azure-test-r-rocker-r-base-latest)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-5463167e1d-azure-test-r-rocker-r-base-latest)|
   |test-r-rstudio-r-base-4.1-opensuse153|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-5463167e1d-azure-test-r-rstudio-r-base-4.1-opensuse153)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-5463167e1d-azure-test-r-rstudio-r-base-4.1-opensuse153)|
   |test-r-rstudio-r-base-4.2-centos7-devtoolset-8|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-5463167e1d-azure-test-r-rstudio-r-base-4.2-centos7-devtoolset-8)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-5463167e1d-azure-test-r-rstudio-r-base-4.2-centos7-devtoolset-8)|
   |test-r-rstudio-r-base-4.2-focal|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-5463167e1d-azure-test-r-rstudio-r-base-4.2-focal)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-5463167e1d-azure-test-r-rstudio-r-base-4.2-focal)|
   |test-r-ubuntu-22.04|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-test-r-ubuntu-22.04)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-test-r-ubuntu-22.04)|
   |test-r-versions|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-test-r-versions)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-test-r-versions)|
   |test-skyhook-integration|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-test-skyhook-integration)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-test-skyhook-integration)|
   |test-ubuntu-18.04-cpp|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-test-ubuntu-18.04-cpp)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-test-ubuntu-18.04-cpp)|
   |test-ubuntu-18.04-cpp-release|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-test-ubuntu-18.04-cpp-release)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-test-ubuntu-18.04-cpp-release)|
   |test-ubuntu-18.04-cpp-static|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-test-ubuntu-18.04-cpp-static)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-test-ubuntu-18.04-cpp-static)|
   |test-ubuntu-18.04-r-sanitizer|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-5463167e1d-azure-test-ubuntu-18.04-r-sanitizer)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-5463167e1d-azure-test-ubuntu-18.04-r-sanitizer)|
   |test-ubuntu-20.04-cpp|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-test-ubuntu-20.04-cpp)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-test-ubuntu-20.04-cpp)|
   |test-ubuntu-20.04-cpp-14|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-test-ubuntu-20.04-cpp-14)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-test-ubuntu-20.04-cpp-14)|
   |test-ubuntu-20.04-cpp-17|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-test-ubuntu-20.04-cpp-17)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-test-ubuntu-20.04-cpp-17)|
   |test-ubuntu-20.04-cpp-bundled|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-test-ubuntu-20.04-cpp-bundled)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-test-ubuntu-20.04-cpp-bundled)|
   |test-ubuntu-20.04-cpp-thread-sanitizer|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-test-ubuntu-20.04-cpp-thread-sanitizer)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-test-ubuntu-20.04-cpp-thread-sanitizer)|
   |test-ubuntu-20.04-python-3|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-5463167e1d-azure-test-ubuntu-20.04-python-3)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-5463167e1d-azure-test-ubuntu-20.04-python-3)|
   |test-ubuntu-22.04-cpp|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-test-ubuntu-22.04-cpp)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-test-ubuntu-22.04-cpp)|
   |test-ubuntu-c-glib|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-test-ubuntu-c-glib)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-test-ubuntu-c-glib)|
   |test-ubuntu-default-docs|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-5463167e1d-azure-test-ubuntu-default-docs)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-5463167e1d-azure-test-ubuntu-default-docs)|
   |test-ubuntu-ruby|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-test-ubuntu-ruby)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-test-ubuntu-ruby)|
   |ubuntu-bionic-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-ubuntu-bionic-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-ubuntu-bionic-amd64)|
   |ubuntu-bionic-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-5463167e1d-travis-ubuntu-bionic-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |ubuntu-focal-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-ubuntu-focal-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-ubuntu-focal-amd64)|
   |ubuntu-focal-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-5463167e1d-travis-ubuntu-focal-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |ubuntu-jammy-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-ubuntu-jammy-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-ubuntu-jammy-amd64)|
   |ubuntu-jammy-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-5463167e1d-travis-ubuntu-jammy-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |verify-rc-source-cpp-linux-almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-cpp-linux-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-cpp-linux-almalinux-8-amd64)|
   |verify-rc-source-cpp-linux-conda-latest-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-cpp-linux-conda-latest-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-cpp-linux-conda-latest-amd64)|
   |verify-rc-source-cpp-linux-ubuntu-18.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-cpp-linux-ubuntu-18.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-cpp-linux-ubuntu-18.04-amd64)|
   |verify-rc-source-cpp-linux-ubuntu-20.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-cpp-linux-ubuntu-20.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-cpp-linux-ubuntu-20.04-amd64)|
   |verify-rc-source-cpp-linux-ubuntu-22.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-cpp-linux-ubuntu-22.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-cpp-linux-ubuntu-22.04-amd64)|
   |verify-rc-source-cpp-macos-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-cpp-macos-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-cpp-macos-amd64)|
   |verify-rc-source-cpp-macos-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-cpp-macos-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-cpp-macos-arm64)|
   |verify-rc-source-cpp-macos-conda-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-cpp-macos-conda-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-cpp-macos-conda-amd64)|
   |verify-rc-source-csharp-linux-almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-csharp-linux-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-csharp-linux-almalinux-8-amd64)|
   |verify-rc-source-csharp-linux-conda-latest-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-csharp-linux-conda-latest-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-csharp-linux-conda-latest-amd64)|
   |verify-rc-source-csharp-linux-ubuntu-18.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-csharp-linux-ubuntu-18.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-csharp-linux-ubuntu-18.04-amd64)|
   |verify-rc-source-csharp-linux-ubuntu-20.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-csharp-linux-ubuntu-20.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-csharp-linux-ubuntu-20.04-amd64)|
   |verify-rc-source-csharp-linux-ubuntu-22.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-csharp-linux-ubuntu-22.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-csharp-linux-ubuntu-22.04-amd64)|
   |verify-rc-source-csharp-macos-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-csharp-macos-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-csharp-macos-amd64)|
   |verify-rc-source-csharp-macos-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-csharp-macos-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-csharp-macos-arm64)|
   |verify-rc-source-go-linux-almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-go-linux-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-go-linux-almalinux-8-amd64)|
   |verify-rc-source-go-linux-conda-latest-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-go-linux-conda-latest-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-go-linux-conda-latest-amd64)|
   |verify-rc-source-go-linux-ubuntu-18.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-go-linux-ubuntu-18.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-go-linux-ubuntu-18.04-amd64)|
   |verify-rc-source-go-linux-ubuntu-20.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-go-linux-ubuntu-20.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-go-linux-ubuntu-20.04-amd64)|
   |verify-rc-source-go-linux-ubuntu-22.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-go-linux-ubuntu-22.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-go-linux-ubuntu-22.04-amd64)|
   |verify-rc-source-go-macos-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-go-macos-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-go-macos-amd64)|
   |verify-rc-source-go-macos-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-go-macos-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-go-macos-arm64)|
   |verify-rc-source-integration-linux-almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-integration-linux-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-integration-linux-almalinux-8-amd64)|
   |verify-rc-source-integration-linux-conda-latest-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-integration-linux-conda-latest-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-integration-linux-conda-latest-amd64)|
   |verify-rc-source-integration-linux-ubuntu-18.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-integration-linux-ubuntu-18.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-integration-linux-ubuntu-18.04-amd64)|
   |verify-rc-source-integration-linux-ubuntu-20.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-integration-linux-ubuntu-20.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-integration-linux-ubuntu-20.04-amd64)|
   |verify-rc-source-integration-linux-ubuntu-22.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-integration-linux-ubuntu-22.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-integration-linux-ubuntu-22.04-amd64)|
   |verify-rc-source-integration-macos-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-integration-macos-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-integration-macos-amd64)|
   |verify-rc-source-integration-macos-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-integration-macos-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-integration-macos-arm64)|
   |verify-rc-source-integration-macos-conda-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-integration-macos-conda-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-integration-macos-conda-amd64)|
   |verify-rc-source-java-linux-almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-java-linux-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-java-linux-almalinux-8-amd64)|
   |verify-rc-source-java-linux-conda-latest-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-java-linux-conda-latest-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-java-linux-conda-latest-amd64)|
   |verify-rc-source-java-linux-ubuntu-18.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-java-linux-ubuntu-18.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-java-linux-ubuntu-18.04-amd64)|
   |verify-rc-source-java-linux-ubuntu-20.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-java-linux-ubuntu-20.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-java-linux-ubuntu-20.04-amd64)|
   |verify-rc-source-java-linux-ubuntu-22.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-java-linux-ubuntu-22.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-java-linux-ubuntu-22.04-amd64)|
   |verify-rc-source-java-macos-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-java-macos-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-java-macos-amd64)|
   |verify-rc-source-js-linux-almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-js-linux-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-js-linux-almalinux-8-amd64)|
   |verify-rc-source-js-linux-conda-latest-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-js-linux-conda-latest-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-js-linux-conda-latest-amd64)|
   |verify-rc-source-js-linux-ubuntu-18.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-js-linux-ubuntu-18.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-js-linux-ubuntu-18.04-amd64)|
   |verify-rc-source-js-linux-ubuntu-20.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-js-linux-ubuntu-20.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-js-linux-ubuntu-20.04-amd64)|
   |verify-rc-source-js-linux-ubuntu-22.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-js-linux-ubuntu-22.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-js-linux-ubuntu-22.04-amd64)|
   |verify-rc-source-js-macos-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-js-macos-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-js-macos-amd64)|
   |verify-rc-source-js-macos-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-js-macos-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-js-macos-arm64)|
   |verify-rc-source-python-linux-almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-python-linux-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-python-linux-almalinux-8-amd64)|
   |verify-rc-source-python-linux-conda-latest-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-python-linux-conda-latest-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-python-linux-conda-latest-amd64)|
   |verify-rc-source-python-linux-ubuntu-18.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-python-linux-ubuntu-18.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-python-linux-ubuntu-18.04-amd64)|
   |verify-rc-source-python-linux-ubuntu-20.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-python-linux-ubuntu-20.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-python-linux-ubuntu-20.04-amd64)|
   |verify-rc-source-python-linux-ubuntu-22.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-python-linux-ubuntu-22.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-python-linux-ubuntu-22.04-amd64)|
   |verify-rc-source-python-macos-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-python-macos-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-python-macos-amd64)|
   |verify-rc-source-python-macos-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-python-macos-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-python-macos-arm64)|
   |verify-rc-source-python-macos-conda-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-python-macos-conda-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-python-macos-conda-amd64)|
   |verify-rc-source-ruby-linux-almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-ruby-linux-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-ruby-linux-almalinux-8-amd64)|
   |verify-rc-source-ruby-linux-conda-latest-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-ruby-linux-conda-latest-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-ruby-linux-conda-latest-amd64)|
   |verify-rc-source-ruby-linux-ubuntu-18.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-ruby-linux-ubuntu-18.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-ruby-linux-ubuntu-18.04-amd64)|
   |verify-rc-source-ruby-linux-ubuntu-20.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-ruby-linux-ubuntu-20.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-ruby-linux-ubuntu-20.04-amd64)|
   |verify-rc-source-ruby-linux-ubuntu-22.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-ruby-linux-ubuntu-22.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-ruby-linux-ubuntu-22.04-amd64)|
   |verify-rc-source-ruby-macos-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-ruby-macos-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-ruby-macos-amd64)|
   |verify-rc-source-ruby-macos-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-ruby-macos-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-ruby-macos-arm64)|
   |verify-rc-source-windows|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-verify-rc-source-windows)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-verify-rc-source-windows)|
   |wheel-macos-big-sur-cp310-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-wheel-macos-big-sur-cp310-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-wheel-macos-big-sur-cp310-arm64)|
   |wheel-macos-big-sur-cp310-universal2|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-wheel-macos-big-sur-cp310-universal2)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-wheel-macos-big-sur-cp310-universal2)|
   |wheel-macos-big-sur-cp38-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-wheel-macos-big-sur-cp38-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-wheel-macos-big-sur-cp38-arm64)|
   |wheel-macos-big-sur-cp39-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-wheel-macos-big-sur-cp39-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-wheel-macos-big-sur-cp39-arm64)|
   |wheel-macos-big-sur-cp39-universal2|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-wheel-macos-big-sur-cp39-universal2)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-wheel-macos-big-sur-cp39-universal2)|
   |wheel-macos-high-sierra-cp310-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-wheel-macos-high-sierra-cp310-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-wheel-macos-high-sierra-cp310-amd64)|
   |wheel-macos-high-sierra-cp37-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-wheel-macos-high-sierra-cp37-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-wheel-macos-high-sierra-cp37-amd64)|
   |wheel-macos-high-sierra-cp38-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-wheel-macos-high-sierra-cp38-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-wheel-macos-high-sierra-cp38-amd64)|
   |wheel-macos-high-sierra-cp39-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-wheel-macos-high-sierra-cp39-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-wheel-macos-high-sierra-cp39-amd64)|
   |wheel-macos-mavericks-cp310-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-wheel-macos-mavericks-cp310-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-wheel-macos-mavericks-cp310-amd64)|
   |wheel-macos-mavericks-cp37-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-wheel-macos-mavericks-cp37-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-wheel-macos-mavericks-cp37-amd64)|
   |wheel-macos-mavericks-cp38-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-wheel-macos-mavericks-cp38-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-wheel-macos-mavericks-cp38-amd64)|
   |wheel-macos-mavericks-cp39-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-wheel-macos-mavericks-cp39-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-wheel-macos-mavericks-cp39-amd64)|
   |wheel-manylinux2014-cp310-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-wheel-manylinux2014-cp310-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-wheel-manylinux2014-cp310-amd64)|
   |wheel-manylinux2014-cp310-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-5463167e1d-travis-wheel-manylinux2014-cp310-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |wheel-manylinux2014-cp37-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-wheel-manylinux2014-cp37-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-wheel-manylinux2014-cp37-amd64)|
   |wheel-manylinux2014-cp37-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-5463167e1d-travis-wheel-manylinux2014-cp37-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |wheel-manylinux2014-cp38-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-wheel-manylinux2014-cp38-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-wheel-manylinux2014-cp38-amd64)|
   |wheel-manylinux2014-cp38-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-5463167e1d-travis-wheel-manylinux2014-cp38-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |wheel-manylinux2014-cp39-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-wheel-manylinux2014-cp39-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-wheel-manylinux2014-cp39-amd64)|
   |wheel-manylinux2014-cp39-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-5463167e1d-travis-wheel-manylinux2014-cp39-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |wheel-windows-cp310-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-wheel-windows-cp310-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-wheel-windows-cp310-amd64)|
   |wheel-windows-cp37-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-wheel-windows-cp37-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-wheel-windows-cp37-amd64)|
   |wheel-windows-cp38-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-wheel-windows-cp38-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-wheel-windows-cp38-amd64)|
   |wheel-windows-cp39-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-5463167e1d-github-wheel-windows-cp39-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-5463167e1d-github-wheel-windows-cp39-amd64)|


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] jorisvandenbossche commented on a diff in pull request #13892: ARROW-12175: [C++] Fix CMake packages

Posted by GitBox <gi...@apache.org>.
jorisvandenbossche commented on code in PR #13892:
URL: https://github.com/apache/arrow/pull/13892#discussion_r963588576


##########
python/pyarrow/src/CMakeLists.txt:
##########
@@ -59,7 +61,6 @@ endif()
 #
 
 find_package(Arrow REQUIRED)
-include(ArrowOptions)

Review Comment:
   For my own understanding, the reason this line is no longer needed, is because this will also be included by `find_package(Arrow)` already? (since `ArrowConfig.cmake` has a line `include("${CMAKE_CURRENT_LIST_DIR}/ArrowOptions.cmake")`)



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] github-actions[bot] commented on pull request #13892: ARROW-12175: [C++] Fix CMake packages

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on PR #13892:
URL: https://github.com/apache/arrow/pull/13892#issuecomment-1221804373

   Revision: 764deeeb9b335e0f2405c20e06cad3d0bada0ff0
   
   Submitted crossbow builds: [ursacomputing/crossbow @ actions-9d41b7d4d9](https://github.com/ursacomputing/crossbow/branches/all?query=actions-9d41b7d4d9)
   
   |Task|Status|
   |----|------|
   |almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-almalinux-8-amd64)|
   |almalinux-8-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-9d41b7d4d9-travis-almalinux-8-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |almalinux-9-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-almalinux-9-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-almalinux-9-amd64)|
   |almalinux-9-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-9d41b7d4d9-travis-almalinux-9-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |amazon-linux-2-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-amazon-linux-2-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-amazon-linux-2-amd64)|
   |amazon-linux-2-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-9d41b7d4d9-travis-amazon-linux-2-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |centos-7-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-centos-7-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-centos-7-amd64)|
   |centos-8-stream-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-centos-8-stream-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-centos-8-stream-amd64)|
   |centos-8-stream-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-9d41b7d4d9-travis-centos-8-stream-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |centos-9-stream-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-centos-9-stream-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-centos-9-stream-amd64)|
   |centos-9-stream-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-9d41b7d4d9-travis-centos-9-stream-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |conan-maximum|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-conan-maximum)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-conan-maximum)|
   |conan-minimum|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-conan-minimum)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-conan-minimum)|
   |conda-clean|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-9d41b7d4d9-azure-conda-clean)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-9d41b7d4d9-azure-conda-clean)|
   |conda-linux-gcc-py310-arm64|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-9d41b7d4d9-azure-conda-linux-gcc-py310-arm64)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-9d41b7d4d9-azure-conda-linux-gcc-py310-arm64)|
   |conda-linux-gcc-py310-cpu|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-9d41b7d4d9-azure-conda-linux-gcc-py310-cpu)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-9d41b7d4d9-azure-conda-linux-gcc-py310-cpu)|
   |conda-linux-gcc-py310-cuda|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-9d41b7d4d9-azure-conda-linux-gcc-py310-cuda)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-9d41b7d4d9-azure-conda-linux-gcc-py310-cuda)|
   |conda-linux-gcc-py310-ppc64le|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-9d41b7d4d9-azure-conda-linux-gcc-py310-ppc64le)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-9d41b7d4d9-azure-conda-linux-gcc-py310-ppc64le)|
   |conda-linux-gcc-py37-arm64|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-9d41b7d4d9-azure-conda-linux-gcc-py37-arm64)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-9d41b7d4d9-azure-conda-linux-gcc-py37-arm64)|
   |conda-linux-gcc-py37-cpu-r40|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-9d41b7d4d9-azure-conda-linux-gcc-py37-cpu-r40)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-9d41b7d4d9-azure-conda-linux-gcc-py37-cpu-r40)|
   |conda-linux-gcc-py37-cpu-r41|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-9d41b7d4d9-azure-conda-linux-gcc-py37-cpu-r41)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-9d41b7d4d9-azure-conda-linux-gcc-py37-cpu-r41)|
   |conda-linux-gcc-py37-cuda|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-9d41b7d4d9-azure-conda-linux-gcc-py37-cuda)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-9d41b7d4d9-azure-conda-linux-gcc-py37-cuda)|
   |conda-linux-gcc-py37-ppc64le|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-9d41b7d4d9-azure-conda-linux-gcc-py37-ppc64le)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-9d41b7d4d9-azure-conda-linux-gcc-py37-ppc64le)|
   |conda-linux-gcc-py38-arm64|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-9d41b7d4d9-azure-conda-linux-gcc-py38-arm64)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-9d41b7d4d9-azure-conda-linux-gcc-py38-arm64)|
   |conda-linux-gcc-py38-cpu|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-9d41b7d4d9-azure-conda-linux-gcc-py38-cpu)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-9d41b7d4d9-azure-conda-linux-gcc-py38-cpu)|
   |conda-linux-gcc-py38-cuda|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-9d41b7d4d9-azure-conda-linux-gcc-py38-cuda)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-9d41b7d4d9-azure-conda-linux-gcc-py38-cuda)|
   |conda-linux-gcc-py38-ppc64le|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-9d41b7d4d9-azure-conda-linux-gcc-py38-ppc64le)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-9d41b7d4d9-azure-conda-linux-gcc-py38-ppc64le)|
   |conda-linux-gcc-py39-arm64|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-9d41b7d4d9-azure-conda-linux-gcc-py39-arm64)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-9d41b7d4d9-azure-conda-linux-gcc-py39-arm64)|
   |conda-linux-gcc-py39-cpu|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-9d41b7d4d9-azure-conda-linux-gcc-py39-cpu)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-9d41b7d4d9-azure-conda-linux-gcc-py39-cpu)|
   |conda-linux-gcc-py39-cuda|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-9d41b7d4d9-azure-conda-linux-gcc-py39-cuda)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-9d41b7d4d9-azure-conda-linux-gcc-py39-cuda)|
   |conda-linux-gcc-py39-ppc64le|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-9d41b7d4d9-azure-conda-linux-gcc-py39-ppc64le)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-9d41b7d4d9-azure-conda-linux-gcc-py39-ppc64le)|
   |conda-osx-arm64-clang-py310|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-9d41b7d4d9-azure-conda-osx-arm64-clang-py310)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-9d41b7d4d9-azure-conda-osx-arm64-clang-py310)|
   |conda-osx-arm64-clang-py38|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-9d41b7d4d9-azure-conda-osx-arm64-clang-py38)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-9d41b7d4d9-azure-conda-osx-arm64-clang-py38)|
   |conda-osx-arm64-clang-py39|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-9d41b7d4d9-azure-conda-osx-arm64-clang-py39)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-9d41b7d4d9-azure-conda-osx-arm64-clang-py39)|
   |conda-osx-clang-py310|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-9d41b7d4d9-azure-conda-osx-clang-py310)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-9d41b7d4d9-azure-conda-osx-clang-py310)|
   |conda-osx-clang-py37-r40|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-9d41b7d4d9-azure-conda-osx-clang-py37-r40)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-9d41b7d4d9-azure-conda-osx-clang-py37-r40)|
   |conda-osx-clang-py37-r41|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-9d41b7d4d9-azure-conda-osx-clang-py37-r41)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-9d41b7d4d9-azure-conda-osx-clang-py37-r41)|
   |conda-osx-clang-py38|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-9d41b7d4d9-azure-conda-osx-clang-py38)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-9d41b7d4d9-azure-conda-osx-clang-py38)|
   |conda-osx-clang-py39|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-9d41b7d4d9-azure-conda-osx-clang-py39)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-9d41b7d4d9-azure-conda-osx-clang-py39)|
   |conda-win-vs2017-py310|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-9d41b7d4d9-azure-conda-win-vs2017-py310)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-9d41b7d4d9-azure-conda-win-vs2017-py310)|
   |conda-win-vs2017-py37-r40|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-9d41b7d4d9-azure-conda-win-vs2017-py37-r40)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-9d41b7d4d9-azure-conda-win-vs2017-py37-r40)|
   |conda-win-vs2017-py37-r41|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-9d41b7d4d9-azure-conda-win-vs2017-py37-r41)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-9d41b7d4d9-azure-conda-win-vs2017-py37-r41)|
   |conda-win-vs2017-py38|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-9d41b7d4d9-azure-conda-win-vs2017-py38)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-9d41b7d4d9-azure-conda-win-vs2017-py38)|
   |conda-win-vs2017-py39|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-9d41b7d4d9-azure-conda-win-vs2017-py39)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-9d41b7d4d9-azure-conda-win-vs2017-py39)|
   |debian-bookworm-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-debian-bookworm-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-debian-bookworm-amd64)|
   |debian-bookworm-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-9d41b7d4d9-travis-debian-bookworm-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |debian-bullseye-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-debian-bullseye-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-debian-bullseye-amd64)|
   |debian-bullseye-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-9d41b7d4d9-travis-debian-bullseye-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |example-cpp-minimal-build-static|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-example-cpp-minimal-build-static)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-example-cpp-minimal-build-static)|
   |example-cpp-minimal-build-static-system-dependency|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-example-cpp-minimal-build-static-system-dependency)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-example-cpp-minimal-build-static-system-dependency)|
   |example-python-minimal-build-fedora-conda|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-example-python-minimal-build-fedora-conda)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-example-python-minimal-build-fedora-conda)|
   |example-python-minimal-build-ubuntu-venv|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-example-python-minimal-build-ubuntu-venv)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-example-python-minimal-build-ubuntu-venv)|
   |homebrew-cpp|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-homebrew-cpp)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-homebrew-cpp)|
   |homebrew-r-autobrew|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-homebrew-r-autobrew)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-homebrew-r-autobrew)|
   |homebrew-r-brew|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-homebrew-r-brew)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-homebrew-r-brew)|
   |java-jars|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-java-jars)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-java-jars)|
   |nuget|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-nuget)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-nuget)|
   |python-sdist|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-python-sdist)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-python-sdist)|
   |r-binary-packages|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-r-binary-packages)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-r-binary-packages)|
   |test-alpine-linux-cpp|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-test-alpine-linux-cpp)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-test-alpine-linux-cpp)|
   |test-build-cpp-fuzz|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-test-build-cpp-fuzz)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-test-build-cpp-fuzz)|
   |test-build-vcpkg-win|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-test-build-vcpkg-win)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-test-build-vcpkg-win)|
   |test-conda-cpp|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-test-conda-cpp)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-test-conda-cpp)|
   |test-conda-cpp-valgrind|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-9d41b7d4d9-azure-test-conda-cpp-valgrind)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-9d41b7d4d9-azure-test-conda-cpp-valgrind)|
   |test-conda-python-3.10|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-test-conda-python-3.10)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-test-conda-python-3.10)|
   |test-conda-python-3.7|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-test-conda-python-3.7)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-test-conda-python-3.7)|
   |test-conda-python-3.7-hdfs-2.9.2|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-test-conda-python-3.7-hdfs-2.9.2)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-test-conda-python-3.7-hdfs-2.9.2)|
   |test-conda-python-3.7-hdfs-3.2.1|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-test-conda-python-3.7-hdfs-3.2.1)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-test-conda-python-3.7-hdfs-3.2.1)|
   |test-conda-python-3.7-kartothek-latest|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-test-conda-python-3.7-kartothek-latest)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-test-conda-python-3.7-kartothek-latest)|
   |test-conda-python-3.7-kartothek-master|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-test-conda-python-3.7-kartothek-master)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-test-conda-python-3.7-kartothek-master)|
   |test-conda-python-3.7-pandas-0.24|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-test-conda-python-3.7-pandas-0.24)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-test-conda-python-3.7-pandas-0.24)|
   |test-conda-python-3.7-pandas-latest|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-test-conda-python-3.7-pandas-latest)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-test-conda-python-3.7-pandas-latest)|
   |test-conda-python-3.7-spark-v3.1.2|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-test-conda-python-3.7-spark-v3.1.2)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-test-conda-python-3.7-spark-v3.1.2)|
   |test-conda-python-3.8|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-test-conda-python-3.8)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-test-conda-python-3.8)|
   |test-conda-python-3.8-hypothesis|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-test-conda-python-3.8-hypothesis)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-test-conda-python-3.8-hypothesis)|
   |test-conda-python-3.8-pandas-latest|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-test-conda-python-3.8-pandas-latest)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-test-conda-python-3.8-pandas-latest)|
   |test-conda-python-3.8-pandas-nightly|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-test-conda-python-3.8-pandas-nightly)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-test-conda-python-3.8-pandas-nightly)|
   |test-conda-python-3.8-spark-v3.2.0|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-test-conda-python-3.8-spark-v3.2.0)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-test-conda-python-3.8-spark-v3.2.0)|
   |test-conda-python-3.9|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-test-conda-python-3.9)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-test-conda-python-3.9)|
   |test-conda-python-3.9-dask-latest|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-test-conda-python-3.9-dask-latest)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-test-conda-python-3.9-dask-latest)|
   |test-conda-python-3.9-dask-master|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-test-conda-python-3.9-dask-master)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-test-conda-python-3.9-dask-master)|
   |test-conda-python-3.9-pandas-master|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-test-conda-python-3.9-pandas-master)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-test-conda-python-3.9-pandas-master)|
   |test-conda-python-3.9-spark-master|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-test-conda-python-3.9-spark-master)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-test-conda-python-3.9-spark-master)|
   |test-debian-10-cpp-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-test-debian-10-cpp-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-test-debian-10-cpp-amd64)|
   |test-debian-10-cpp-i386|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-test-debian-10-cpp-i386)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-test-debian-10-cpp-i386)|
   |test-debian-11-cpp-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-test-debian-11-cpp-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-test-debian-11-cpp-amd64)|
   |test-debian-11-cpp-i386|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-test-debian-11-cpp-i386)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-test-debian-11-cpp-i386)|
   |test-debian-11-go-1.16|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-9d41b7d4d9-azure-test-debian-11-go-1.16)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-9d41b7d4d9-azure-test-debian-11-go-1.16)|
   |test-debian-11-python-3|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-9d41b7d4d9-azure-test-debian-11-python-3)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-9d41b7d4d9-azure-test-debian-11-python-3)|
   |test-debian-c-glib|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-test-debian-c-glib)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-test-debian-c-glib)|
   |test-debian-ruby|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-test-debian-ruby)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-test-debian-ruby)|
   |test-fedora-35-cpp|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-test-fedora-35-cpp)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-test-fedora-35-cpp)|
   |test-fedora-35-python-3|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-9d41b7d4d9-azure-test-fedora-35-python-3)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-9d41b7d4d9-azure-test-fedora-35-python-3)|
   |test-fedora-r-clang-sanitizer|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-9d41b7d4d9-azure-test-fedora-r-clang-sanitizer)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-9d41b7d4d9-azure-test-fedora-r-clang-sanitizer)|
   |test-r-arrow-backwards-compatibility|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-test-r-arrow-backwards-compatibility)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-test-r-arrow-backwards-compatibility)|
   |test-r-depsource-bundled|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-9d41b7d4d9-azure-test-r-depsource-bundled)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-9d41b7d4d9-azure-test-r-depsource-bundled)|
   |test-r-depsource-system|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-test-r-depsource-system)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-test-r-depsource-system)|
   |test-r-dev-duckdb|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-test-r-dev-duckdb)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-test-r-dev-duckdb)|
   |test-r-devdocs|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-test-r-devdocs)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-test-r-devdocs)|
   |test-r-gcc-11|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-test-r-gcc-11)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-test-r-gcc-11)|
   |test-r-gcc-12|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-test-r-gcc-12)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-test-r-gcc-12)|
   |test-r-install-local|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-test-r-install-local)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-test-r-install-local)|
   |test-r-linux-as-cran|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-test-r-linux-as-cran)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-test-r-linux-as-cran)|
   |test-r-linux-rchk|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-test-r-linux-rchk)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-test-r-linux-rchk)|
   |test-r-linux-valgrind|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-9d41b7d4d9-azure-test-r-linux-valgrind)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-9d41b7d4d9-azure-test-r-linux-valgrind)|
   |test-r-minimal-build|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-9d41b7d4d9-azure-test-r-minimal-build)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-9d41b7d4d9-azure-test-r-minimal-build)|
   |test-r-offline-maximal|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-test-r-offline-maximal)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-test-r-offline-maximal)|
   |test-r-offline-minimal|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-9d41b7d4d9-azure-test-r-offline-minimal)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-9d41b7d4d9-azure-test-r-offline-minimal)|
   |test-r-rhub-debian-gcc-devel-lto-latest|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-9d41b7d4d9-azure-test-r-rhub-debian-gcc-devel-lto-latest)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-9d41b7d4d9-azure-test-r-rhub-debian-gcc-devel-lto-latest)|
   |test-r-rhub-debian-gcc-release-custom-ccache|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-9d41b7d4d9-azure-test-r-rhub-debian-gcc-release-custom-ccache)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-9d41b7d4d9-azure-test-r-rhub-debian-gcc-release-custom-ccache)|
   |test-r-rhub-ubuntu-gcc-release-latest|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-9d41b7d4d9-azure-test-r-rhub-ubuntu-gcc-release-latest)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-9d41b7d4d9-azure-test-r-rhub-ubuntu-gcc-release-latest)|
   |test-r-rocker-r-base-latest|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-9d41b7d4d9-azure-test-r-rocker-r-base-latest)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-9d41b7d4d9-azure-test-r-rocker-r-base-latest)|
   |test-r-rstudio-r-base-4.1-opensuse153|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-9d41b7d4d9-azure-test-r-rstudio-r-base-4.1-opensuse153)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-9d41b7d4d9-azure-test-r-rstudio-r-base-4.1-opensuse153)|
   |test-r-rstudio-r-base-4.2-centos7-devtoolset-8|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-9d41b7d4d9-azure-test-r-rstudio-r-base-4.2-centos7-devtoolset-8)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-9d41b7d4d9-azure-test-r-rstudio-r-base-4.2-centos7-devtoolset-8)|
   |test-r-rstudio-r-base-4.2-focal|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-9d41b7d4d9-azure-test-r-rstudio-r-base-4.2-focal)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-9d41b7d4d9-azure-test-r-rstudio-r-base-4.2-focal)|
   |test-r-ubuntu-22.04|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-test-r-ubuntu-22.04)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-test-r-ubuntu-22.04)|
   |test-r-versions|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-test-r-versions)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-test-r-versions)|
   |test-skyhook-integration|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-test-skyhook-integration)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-test-skyhook-integration)|
   |test-ubuntu-18.04-cpp|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-test-ubuntu-18.04-cpp)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-test-ubuntu-18.04-cpp)|
   |test-ubuntu-18.04-cpp-release|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-test-ubuntu-18.04-cpp-release)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-test-ubuntu-18.04-cpp-release)|
   |test-ubuntu-18.04-cpp-static|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-test-ubuntu-18.04-cpp-static)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-test-ubuntu-18.04-cpp-static)|
   |test-ubuntu-18.04-r-sanitizer|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-9d41b7d4d9-azure-test-ubuntu-18.04-r-sanitizer)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-9d41b7d4d9-azure-test-ubuntu-18.04-r-sanitizer)|
   |test-ubuntu-20.04-cpp|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-test-ubuntu-20.04-cpp)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-test-ubuntu-20.04-cpp)|
   |test-ubuntu-20.04-cpp-14|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-test-ubuntu-20.04-cpp-14)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-test-ubuntu-20.04-cpp-14)|
   |test-ubuntu-20.04-cpp-17|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-test-ubuntu-20.04-cpp-17)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-test-ubuntu-20.04-cpp-17)|
   |test-ubuntu-20.04-cpp-bundled|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-test-ubuntu-20.04-cpp-bundled)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-test-ubuntu-20.04-cpp-bundled)|
   |test-ubuntu-20.04-cpp-thread-sanitizer|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-test-ubuntu-20.04-cpp-thread-sanitizer)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-test-ubuntu-20.04-cpp-thread-sanitizer)|
   |test-ubuntu-20.04-python-3|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-9d41b7d4d9-azure-test-ubuntu-20.04-python-3)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-9d41b7d4d9-azure-test-ubuntu-20.04-python-3)|
   |test-ubuntu-22.04-cpp|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-test-ubuntu-22.04-cpp)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-test-ubuntu-22.04-cpp)|
   |test-ubuntu-c-glib|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-test-ubuntu-c-glib)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-test-ubuntu-c-glib)|
   |test-ubuntu-default-docs|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-9d41b7d4d9-azure-test-ubuntu-default-docs)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-9d41b7d4d9-azure-test-ubuntu-default-docs)|
   |test-ubuntu-ruby|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-test-ubuntu-ruby)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-test-ubuntu-ruby)|
   |ubuntu-bionic-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-ubuntu-bionic-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-ubuntu-bionic-amd64)|
   |ubuntu-bionic-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-9d41b7d4d9-travis-ubuntu-bionic-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |ubuntu-focal-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-ubuntu-focal-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-ubuntu-focal-amd64)|
   |ubuntu-focal-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-9d41b7d4d9-travis-ubuntu-focal-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |ubuntu-jammy-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-ubuntu-jammy-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-ubuntu-jammy-amd64)|
   |ubuntu-jammy-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-9d41b7d4d9-travis-ubuntu-jammy-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |verify-rc-source-cpp-linux-almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-cpp-linux-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-cpp-linux-almalinux-8-amd64)|
   |verify-rc-source-cpp-linux-conda-latest-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-cpp-linux-conda-latest-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-cpp-linux-conda-latest-amd64)|
   |verify-rc-source-cpp-linux-ubuntu-18.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-cpp-linux-ubuntu-18.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-cpp-linux-ubuntu-18.04-amd64)|
   |verify-rc-source-cpp-linux-ubuntu-20.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-cpp-linux-ubuntu-20.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-cpp-linux-ubuntu-20.04-amd64)|
   |verify-rc-source-cpp-linux-ubuntu-22.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-cpp-linux-ubuntu-22.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-cpp-linux-ubuntu-22.04-amd64)|
   |verify-rc-source-cpp-macos-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-cpp-macos-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-cpp-macos-amd64)|
   |verify-rc-source-cpp-macos-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-cpp-macos-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-cpp-macos-arm64)|
   |verify-rc-source-cpp-macos-conda-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-cpp-macos-conda-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-cpp-macos-conda-amd64)|
   |verify-rc-source-csharp-linux-almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-csharp-linux-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-csharp-linux-almalinux-8-amd64)|
   |verify-rc-source-csharp-linux-conda-latest-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-csharp-linux-conda-latest-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-csharp-linux-conda-latest-amd64)|
   |verify-rc-source-csharp-linux-ubuntu-18.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-csharp-linux-ubuntu-18.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-csharp-linux-ubuntu-18.04-amd64)|
   |verify-rc-source-csharp-linux-ubuntu-20.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-csharp-linux-ubuntu-20.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-csharp-linux-ubuntu-20.04-amd64)|
   |verify-rc-source-csharp-linux-ubuntu-22.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-csharp-linux-ubuntu-22.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-csharp-linux-ubuntu-22.04-amd64)|
   |verify-rc-source-csharp-macos-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-csharp-macos-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-csharp-macos-amd64)|
   |verify-rc-source-csharp-macos-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-csharp-macos-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-csharp-macos-arm64)|
   |verify-rc-source-go-linux-almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-go-linux-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-go-linux-almalinux-8-amd64)|
   |verify-rc-source-go-linux-conda-latest-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-go-linux-conda-latest-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-go-linux-conda-latest-amd64)|
   |verify-rc-source-go-linux-ubuntu-18.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-go-linux-ubuntu-18.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-go-linux-ubuntu-18.04-amd64)|
   |verify-rc-source-go-linux-ubuntu-20.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-go-linux-ubuntu-20.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-go-linux-ubuntu-20.04-amd64)|
   |verify-rc-source-go-linux-ubuntu-22.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-go-linux-ubuntu-22.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-go-linux-ubuntu-22.04-amd64)|
   |verify-rc-source-go-macos-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-go-macos-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-go-macos-amd64)|
   |verify-rc-source-go-macos-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-go-macos-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-go-macos-arm64)|
   |verify-rc-source-integration-linux-almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-integration-linux-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-integration-linux-almalinux-8-amd64)|
   |verify-rc-source-integration-linux-conda-latest-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-integration-linux-conda-latest-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-integration-linux-conda-latest-amd64)|
   |verify-rc-source-integration-linux-ubuntu-18.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-integration-linux-ubuntu-18.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-integration-linux-ubuntu-18.04-amd64)|
   |verify-rc-source-integration-linux-ubuntu-20.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-integration-linux-ubuntu-20.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-integration-linux-ubuntu-20.04-amd64)|
   |verify-rc-source-integration-linux-ubuntu-22.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-integration-linux-ubuntu-22.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-integration-linux-ubuntu-22.04-amd64)|
   |verify-rc-source-integration-macos-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-integration-macos-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-integration-macos-amd64)|
   |verify-rc-source-integration-macos-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-integration-macos-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-integration-macos-arm64)|
   |verify-rc-source-integration-macos-conda-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-integration-macos-conda-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-integration-macos-conda-amd64)|
   |verify-rc-source-java-linux-almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-java-linux-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-java-linux-almalinux-8-amd64)|
   |verify-rc-source-java-linux-conda-latest-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-java-linux-conda-latest-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-java-linux-conda-latest-amd64)|
   |verify-rc-source-java-linux-ubuntu-18.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-java-linux-ubuntu-18.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-java-linux-ubuntu-18.04-amd64)|
   |verify-rc-source-java-linux-ubuntu-20.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-java-linux-ubuntu-20.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-java-linux-ubuntu-20.04-amd64)|
   |verify-rc-source-java-linux-ubuntu-22.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-java-linux-ubuntu-22.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-java-linux-ubuntu-22.04-amd64)|
   |verify-rc-source-java-macos-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-java-macos-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-java-macos-amd64)|
   |verify-rc-source-js-linux-almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-js-linux-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-js-linux-almalinux-8-amd64)|
   |verify-rc-source-js-linux-conda-latest-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-js-linux-conda-latest-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-js-linux-conda-latest-amd64)|
   |verify-rc-source-js-linux-ubuntu-18.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-js-linux-ubuntu-18.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-js-linux-ubuntu-18.04-amd64)|
   |verify-rc-source-js-linux-ubuntu-20.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-js-linux-ubuntu-20.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-js-linux-ubuntu-20.04-amd64)|
   |verify-rc-source-js-linux-ubuntu-22.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-js-linux-ubuntu-22.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-js-linux-ubuntu-22.04-amd64)|
   |verify-rc-source-js-macos-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-js-macos-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-js-macos-amd64)|
   |verify-rc-source-js-macos-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-js-macos-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-js-macos-arm64)|
   |verify-rc-source-python-linux-almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-python-linux-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-python-linux-almalinux-8-amd64)|
   |verify-rc-source-python-linux-conda-latest-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-python-linux-conda-latest-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-python-linux-conda-latest-amd64)|
   |verify-rc-source-python-linux-ubuntu-18.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-python-linux-ubuntu-18.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-python-linux-ubuntu-18.04-amd64)|
   |verify-rc-source-python-linux-ubuntu-20.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-python-linux-ubuntu-20.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-python-linux-ubuntu-20.04-amd64)|
   |verify-rc-source-python-linux-ubuntu-22.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-python-linux-ubuntu-22.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-python-linux-ubuntu-22.04-amd64)|
   |verify-rc-source-python-macos-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-python-macos-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-python-macos-amd64)|
   |verify-rc-source-python-macos-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-python-macos-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-python-macos-arm64)|
   |verify-rc-source-python-macos-conda-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-python-macos-conda-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-python-macos-conda-amd64)|
   |verify-rc-source-ruby-linux-almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-ruby-linux-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-ruby-linux-almalinux-8-amd64)|
   |verify-rc-source-ruby-linux-conda-latest-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-ruby-linux-conda-latest-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-ruby-linux-conda-latest-amd64)|
   |verify-rc-source-ruby-linux-ubuntu-18.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-ruby-linux-ubuntu-18.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-ruby-linux-ubuntu-18.04-amd64)|
   |verify-rc-source-ruby-linux-ubuntu-20.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-ruby-linux-ubuntu-20.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-ruby-linux-ubuntu-20.04-amd64)|
   |verify-rc-source-ruby-linux-ubuntu-22.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-ruby-linux-ubuntu-22.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-ruby-linux-ubuntu-22.04-amd64)|
   |verify-rc-source-ruby-macos-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-ruby-macos-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-ruby-macos-amd64)|
   |verify-rc-source-ruby-macos-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-ruby-macos-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-ruby-macos-arm64)|
   |verify-rc-source-windows|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-verify-rc-source-windows)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-verify-rc-source-windows)|
   |wheel-macos-big-sur-cp310-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-wheel-macos-big-sur-cp310-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-wheel-macos-big-sur-cp310-arm64)|
   |wheel-macos-big-sur-cp310-universal2|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-wheel-macos-big-sur-cp310-universal2)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-wheel-macos-big-sur-cp310-universal2)|
   |wheel-macos-big-sur-cp38-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-wheel-macos-big-sur-cp38-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-wheel-macos-big-sur-cp38-arm64)|
   |wheel-macos-big-sur-cp39-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-wheel-macos-big-sur-cp39-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-wheel-macos-big-sur-cp39-arm64)|
   |wheel-macos-big-sur-cp39-universal2|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-wheel-macos-big-sur-cp39-universal2)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-wheel-macos-big-sur-cp39-universal2)|
   |wheel-macos-high-sierra-cp310-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-wheel-macos-high-sierra-cp310-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-wheel-macos-high-sierra-cp310-amd64)|
   |wheel-macos-high-sierra-cp37-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-wheel-macos-high-sierra-cp37-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-wheel-macos-high-sierra-cp37-amd64)|
   |wheel-macos-high-sierra-cp38-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-wheel-macos-high-sierra-cp38-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-wheel-macos-high-sierra-cp38-amd64)|
   |wheel-macos-high-sierra-cp39-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-wheel-macos-high-sierra-cp39-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-wheel-macos-high-sierra-cp39-amd64)|
   |wheel-macos-mavericks-cp310-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-wheel-macos-mavericks-cp310-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-wheel-macos-mavericks-cp310-amd64)|
   |wheel-macos-mavericks-cp37-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-wheel-macos-mavericks-cp37-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-wheel-macos-mavericks-cp37-amd64)|
   |wheel-macos-mavericks-cp38-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-wheel-macos-mavericks-cp38-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-wheel-macos-mavericks-cp38-amd64)|
   |wheel-macos-mavericks-cp39-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-wheel-macos-mavericks-cp39-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-wheel-macos-mavericks-cp39-amd64)|
   |wheel-manylinux2014-cp310-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-wheel-manylinux2014-cp310-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-wheel-manylinux2014-cp310-amd64)|
   |wheel-manylinux2014-cp310-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-9d41b7d4d9-travis-wheel-manylinux2014-cp310-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |wheel-manylinux2014-cp37-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-wheel-manylinux2014-cp37-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-wheel-manylinux2014-cp37-amd64)|
   |wheel-manylinux2014-cp37-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-9d41b7d4d9-travis-wheel-manylinux2014-cp37-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |wheel-manylinux2014-cp38-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-wheel-manylinux2014-cp38-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-wheel-manylinux2014-cp38-amd64)|
   |wheel-manylinux2014-cp38-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-9d41b7d4d9-travis-wheel-manylinux2014-cp38-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |wheel-manylinux2014-cp39-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-wheel-manylinux2014-cp39-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-wheel-manylinux2014-cp39-amd64)|
   |wheel-manylinux2014-cp39-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-9d41b7d4d9-travis-wheel-manylinux2014-cp39-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |wheel-windows-cp310-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-wheel-windows-cp310-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-wheel-windows-cp310-amd64)|
   |wheel-windows-cp37-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-wheel-windows-cp37-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-wheel-windows-cp37-amd64)|
   |wheel-windows-cp38-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-wheel-windows-cp38-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-wheel-windows-cp38-amd64)|
   |wheel-windows-cp39-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-9d41b7d4d9-github-wheel-windows-cp39-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-9d41b7d4d9-github-wheel-windows-cp39-amd64)|


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] kou commented on pull request #13892: ARROW-12175: [C++] Fix CMake packages

Posted by GitBox <gi...@apache.org>.
kou commented on PR #13892:
URL: https://github.com/apache/arrow/pull/13892#issuecomment-1229207377

   @github-actions crossbow submit -g nightly-tests -g nightly-packaging -g nightly-release


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] kou commented on pull request #13892: ARROW-12175: [C++] Fix CMake packages

Posted by GitBox <gi...@apache.org>.
kou commented on PR #13892:
URL: https://github.com/apache/arrow/pull/13892#issuecomment-1229348827

   @github-actions crossbow submit -g nightly-tests -g nightly-packaging -g nightly-release


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] github-actions[bot] commented on pull request #13892: ARROW-12175: [C++] Fix CMake packages

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on PR #13892:
URL: https://github.com/apache/arrow/pull/13892#issuecomment-1228647570

   Revision: b3bbc980eac6abfb4fed285d5748b275603cf3d0
   
   Submitted crossbow builds: [ursacomputing/crossbow @ actions-2f66ba92d6](https://github.com/ursacomputing/crossbow/branches/all?query=actions-2f66ba92d6)
   
   |Task|Status|
   |----|------|
   |conda-linux-gcc-py310-cpu|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-2f66ba92d6-azure-conda-linux-gcc-py310-cpu)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-2f66ba92d6-azure-conda-linux-gcc-py310-cpu)|


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] kou commented on pull request #13892: ARROW-12175: [C++] Fix CMake packages

Posted by GitBox <gi...@apache.org>.
kou commented on PR #13892:
URL: https://github.com/apache/arrow/pull/13892#issuecomment-1223580852

   @github-actions crossbow submit example-python-minimal-build-ubuntu-venv homebrew-cpp verify-rc-source-python-linux-conda-latest-amd64 wheel-macos-big-sur-cp310-arm64 wheel-manylinux2014-cp310-amd64 wheel-windows-cp310-amd64


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] kou commented on pull request #13892: ARROW-12175: [C++] Fix CMake packages

Posted by GitBox <gi...@apache.org>.
kou commented on PR #13892:
URL: https://github.com/apache/arrow/pull/13892#issuecomment-1221923932

   @github-actions crossbow submit -g nightly-tests -g nightly-packaging -g nightly-release


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] github-actions[bot] commented on pull request #13892: ARROW-12175: [C++] Fix CMake packages

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on PR #13892:
URL: https://github.com/apache/arrow/pull/13892#issuecomment-1223582453

   Revision: 11927f132c8dc70d100e96bc0a272bf737049051
   
   Submitted crossbow builds: [ursacomputing/crossbow @ actions-4f201f1457](https://github.com/ursacomputing/crossbow/branches/all?query=actions-4f201f1457)
   
   |Task|Status|
   |----|------|
   |example-python-minimal-build-ubuntu-venv|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-4f201f1457-github-example-python-minimal-build-ubuntu-venv)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-4f201f1457-github-example-python-minimal-build-ubuntu-venv)|
   |homebrew-cpp|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-4f201f1457-github-homebrew-cpp)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-4f201f1457-github-homebrew-cpp)|
   |verify-rc-source-python-linux-conda-latest-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-4f201f1457-github-verify-rc-source-python-linux-conda-latest-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-4f201f1457-github-verify-rc-source-python-linux-conda-latest-amd64)|
   |wheel-macos-big-sur-cp310-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-4f201f1457-github-wheel-macos-big-sur-cp310-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-4f201f1457-github-wheel-macos-big-sur-cp310-arm64)|
   |wheel-manylinux2014-cp310-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-4f201f1457-github-wheel-manylinux2014-cp310-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-4f201f1457-github-wheel-manylinux2014-cp310-amd64)|
   |wheel-windows-cp310-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-4f201f1457-github-wheel-windows-cp310-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-4f201f1457-github-wheel-windows-cp310-amd64)|


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] github-actions[bot] commented on pull request #13892: ARROW-12175: [C++] Fix CMake packages

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on PR #13892:
URL: https://github.com/apache/arrow/pull/13892#issuecomment-1221936976

   Revision: 930229797088e5c6d9fb5a0baeb1e0207418adc2
   
   Submitted crossbow builds: [ursacomputing/crossbow @ actions-7922d05fbf](https://github.com/ursacomputing/crossbow/branches/all?query=actions-7922d05fbf)
   
   |Task|Status|
   |----|------|
   |almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-almalinux-8-amd64)|
   |almalinux-8-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-7922d05fbf-travis-almalinux-8-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |almalinux-9-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-almalinux-9-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-almalinux-9-amd64)|
   |almalinux-9-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-7922d05fbf-travis-almalinux-9-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |amazon-linux-2-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-amazon-linux-2-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-amazon-linux-2-amd64)|
   |amazon-linux-2-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-7922d05fbf-travis-amazon-linux-2-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |centos-7-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-centos-7-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-centos-7-amd64)|
   |centos-8-stream-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-centos-8-stream-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-centos-8-stream-amd64)|
   |centos-8-stream-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-7922d05fbf-travis-centos-8-stream-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |centos-9-stream-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-centos-9-stream-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-centos-9-stream-amd64)|
   |centos-9-stream-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-7922d05fbf-travis-centos-9-stream-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |conan-maximum|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-conan-maximum)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-conan-maximum)|
   |conan-minimum|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-conan-minimum)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-conan-minimum)|
   |conda-clean|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-7922d05fbf-azure-conda-clean)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-7922d05fbf-azure-conda-clean)|
   |conda-linux-gcc-py310-arm64|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-7922d05fbf-azure-conda-linux-gcc-py310-arm64)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-7922d05fbf-azure-conda-linux-gcc-py310-arm64)|
   |conda-linux-gcc-py310-cpu|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-7922d05fbf-azure-conda-linux-gcc-py310-cpu)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-7922d05fbf-azure-conda-linux-gcc-py310-cpu)|
   |conda-linux-gcc-py310-cuda|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-7922d05fbf-azure-conda-linux-gcc-py310-cuda)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-7922d05fbf-azure-conda-linux-gcc-py310-cuda)|
   |conda-linux-gcc-py310-ppc64le|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-7922d05fbf-azure-conda-linux-gcc-py310-ppc64le)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-7922d05fbf-azure-conda-linux-gcc-py310-ppc64le)|
   |conda-linux-gcc-py37-arm64|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-7922d05fbf-azure-conda-linux-gcc-py37-arm64)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-7922d05fbf-azure-conda-linux-gcc-py37-arm64)|
   |conda-linux-gcc-py37-cpu-r40|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-7922d05fbf-azure-conda-linux-gcc-py37-cpu-r40)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-7922d05fbf-azure-conda-linux-gcc-py37-cpu-r40)|
   |conda-linux-gcc-py37-cpu-r41|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-7922d05fbf-azure-conda-linux-gcc-py37-cpu-r41)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-7922d05fbf-azure-conda-linux-gcc-py37-cpu-r41)|
   |conda-linux-gcc-py37-cuda|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-7922d05fbf-azure-conda-linux-gcc-py37-cuda)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-7922d05fbf-azure-conda-linux-gcc-py37-cuda)|
   |conda-linux-gcc-py37-ppc64le|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-7922d05fbf-azure-conda-linux-gcc-py37-ppc64le)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-7922d05fbf-azure-conda-linux-gcc-py37-ppc64le)|
   |conda-linux-gcc-py38-arm64|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-7922d05fbf-azure-conda-linux-gcc-py38-arm64)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-7922d05fbf-azure-conda-linux-gcc-py38-arm64)|
   |conda-linux-gcc-py38-cpu|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-7922d05fbf-azure-conda-linux-gcc-py38-cpu)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-7922d05fbf-azure-conda-linux-gcc-py38-cpu)|
   |conda-linux-gcc-py38-cuda|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-7922d05fbf-azure-conda-linux-gcc-py38-cuda)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-7922d05fbf-azure-conda-linux-gcc-py38-cuda)|
   |conda-linux-gcc-py38-ppc64le|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-7922d05fbf-azure-conda-linux-gcc-py38-ppc64le)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-7922d05fbf-azure-conda-linux-gcc-py38-ppc64le)|
   |conda-linux-gcc-py39-arm64|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-7922d05fbf-azure-conda-linux-gcc-py39-arm64)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-7922d05fbf-azure-conda-linux-gcc-py39-arm64)|
   |conda-linux-gcc-py39-cpu|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-7922d05fbf-azure-conda-linux-gcc-py39-cpu)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-7922d05fbf-azure-conda-linux-gcc-py39-cpu)|
   |conda-linux-gcc-py39-cuda|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-7922d05fbf-azure-conda-linux-gcc-py39-cuda)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-7922d05fbf-azure-conda-linux-gcc-py39-cuda)|
   |conda-linux-gcc-py39-ppc64le|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-7922d05fbf-azure-conda-linux-gcc-py39-ppc64le)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-7922d05fbf-azure-conda-linux-gcc-py39-ppc64le)|
   |conda-osx-arm64-clang-py310|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-7922d05fbf-azure-conda-osx-arm64-clang-py310)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-7922d05fbf-azure-conda-osx-arm64-clang-py310)|
   |conda-osx-arm64-clang-py38|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-7922d05fbf-azure-conda-osx-arm64-clang-py38)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-7922d05fbf-azure-conda-osx-arm64-clang-py38)|
   |conda-osx-arm64-clang-py39|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-7922d05fbf-azure-conda-osx-arm64-clang-py39)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-7922d05fbf-azure-conda-osx-arm64-clang-py39)|
   |conda-osx-clang-py310|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-7922d05fbf-azure-conda-osx-clang-py310)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-7922d05fbf-azure-conda-osx-clang-py310)|
   |conda-osx-clang-py37-r40|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-7922d05fbf-azure-conda-osx-clang-py37-r40)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-7922d05fbf-azure-conda-osx-clang-py37-r40)|
   |conda-osx-clang-py37-r41|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-7922d05fbf-azure-conda-osx-clang-py37-r41)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-7922d05fbf-azure-conda-osx-clang-py37-r41)|
   |conda-osx-clang-py38|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-7922d05fbf-azure-conda-osx-clang-py38)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-7922d05fbf-azure-conda-osx-clang-py38)|
   |conda-osx-clang-py39|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-7922d05fbf-azure-conda-osx-clang-py39)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-7922d05fbf-azure-conda-osx-clang-py39)|
   |conda-win-vs2017-py310|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-7922d05fbf-azure-conda-win-vs2017-py310)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-7922d05fbf-azure-conda-win-vs2017-py310)|
   |conda-win-vs2017-py37-r40|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-7922d05fbf-azure-conda-win-vs2017-py37-r40)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-7922d05fbf-azure-conda-win-vs2017-py37-r40)|
   |conda-win-vs2017-py37-r41|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-7922d05fbf-azure-conda-win-vs2017-py37-r41)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-7922d05fbf-azure-conda-win-vs2017-py37-r41)|
   |conda-win-vs2017-py38|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-7922d05fbf-azure-conda-win-vs2017-py38)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-7922d05fbf-azure-conda-win-vs2017-py38)|
   |conda-win-vs2017-py39|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-7922d05fbf-azure-conda-win-vs2017-py39)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-7922d05fbf-azure-conda-win-vs2017-py39)|
   |debian-bookworm-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-debian-bookworm-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-debian-bookworm-amd64)|
   |debian-bookworm-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-7922d05fbf-travis-debian-bookworm-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |debian-bullseye-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-debian-bullseye-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-debian-bullseye-amd64)|
   |debian-bullseye-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-7922d05fbf-travis-debian-bullseye-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |example-cpp-minimal-build-static|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-example-cpp-minimal-build-static)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-example-cpp-minimal-build-static)|
   |example-cpp-minimal-build-static-system-dependency|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-example-cpp-minimal-build-static-system-dependency)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-example-cpp-minimal-build-static-system-dependency)|
   |example-python-minimal-build-fedora-conda|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-example-python-minimal-build-fedora-conda)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-example-python-minimal-build-fedora-conda)|
   |example-python-minimal-build-ubuntu-venv|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-example-python-minimal-build-ubuntu-venv)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-example-python-minimal-build-ubuntu-venv)|
   |homebrew-cpp|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-homebrew-cpp)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-homebrew-cpp)|
   |homebrew-r-autobrew|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-homebrew-r-autobrew)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-homebrew-r-autobrew)|
   |homebrew-r-brew|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-homebrew-r-brew)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-homebrew-r-brew)|
   |java-jars|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-java-jars)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-java-jars)|
   |nuget|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-nuget)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-nuget)|
   |python-sdist|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-python-sdist)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-python-sdist)|
   |r-binary-packages|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-r-binary-packages)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-r-binary-packages)|
   |test-alpine-linux-cpp|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-test-alpine-linux-cpp)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-test-alpine-linux-cpp)|
   |test-build-cpp-fuzz|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-test-build-cpp-fuzz)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-test-build-cpp-fuzz)|
   |test-build-vcpkg-win|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-test-build-vcpkg-win)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-test-build-vcpkg-win)|
   |test-conda-cpp|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-test-conda-cpp)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-test-conda-cpp)|
   |test-conda-cpp-valgrind|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-7922d05fbf-azure-test-conda-cpp-valgrind)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-7922d05fbf-azure-test-conda-cpp-valgrind)|
   |test-conda-python-3.10|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-test-conda-python-3.10)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-test-conda-python-3.10)|
   |test-conda-python-3.7|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-test-conda-python-3.7)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-test-conda-python-3.7)|
   |test-conda-python-3.7-hdfs-2.9.2|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-test-conda-python-3.7-hdfs-2.9.2)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-test-conda-python-3.7-hdfs-2.9.2)|
   |test-conda-python-3.7-hdfs-3.2.1|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-test-conda-python-3.7-hdfs-3.2.1)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-test-conda-python-3.7-hdfs-3.2.1)|
   |test-conda-python-3.7-kartothek-latest|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-test-conda-python-3.7-kartothek-latest)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-test-conda-python-3.7-kartothek-latest)|
   |test-conda-python-3.7-kartothek-master|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-test-conda-python-3.7-kartothek-master)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-test-conda-python-3.7-kartothek-master)|
   |test-conda-python-3.7-pandas-0.24|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-test-conda-python-3.7-pandas-0.24)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-test-conda-python-3.7-pandas-0.24)|
   |test-conda-python-3.7-pandas-latest|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-test-conda-python-3.7-pandas-latest)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-test-conda-python-3.7-pandas-latest)|
   |test-conda-python-3.7-spark-v3.1.2|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-test-conda-python-3.7-spark-v3.1.2)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-test-conda-python-3.7-spark-v3.1.2)|
   |test-conda-python-3.8|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-test-conda-python-3.8)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-test-conda-python-3.8)|
   |test-conda-python-3.8-hypothesis|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-test-conda-python-3.8-hypothesis)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-test-conda-python-3.8-hypothesis)|
   |test-conda-python-3.8-pandas-latest|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-test-conda-python-3.8-pandas-latest)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-test-conda-python-3.8-pandas-latest)|
   |test-conda-python-3.8-pandas-nightly|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-test-conda-python-3.8-pandas-nightly)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-test-conda-python-3.8-pandas-nightly)|
   |test-conda-python-3.8-spark-v3.2.0|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-test-conda-python-3.8-spark-v3.2.0)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-test-conda-python-3.8-spark-v3.2.0)|
   |test-conda-python-3.9|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-test-conda-python-3.9)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-test-conda-python-3.9)|
   |test-conda-python-3.9-dask-latest|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-test-conda-python-3.9-dask-latest)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-test-conda-python-3.9-dask-latest)|
   |test-conda-python-3.9-dask-master|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-test-conda-python-3.9-dask-master)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-test-conda-python-3.9-dask-master)|
   |test-conda-python-3.9-pandas-master|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-test-conda-python-3.9-pandas-master)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-test-conda-python-3.9-pandas-master)|
   |test-conda-python-3.9-spark-master|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-test-conda-python-3.9-spark-master)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-test-conda-python-3.9-spark-master)|
   |test-debian-10-cpp-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-test-debian-10-cpp-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-test-debian-10-cpp-amd64)|
   |test-debian-10-cpp-i386|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-test-debian-10-cpp-i386)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-test-debian-10-cpp-i386)|
   |test-debian-11-cpp-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-test-debian-11-cpp-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-test-debian-11-cpp-amd64)|
   |test-debian-11-cpp-i386|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-test-debian-11-cpp-i386)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-test-debian-11-cpp-i386)|
   |test-debian-11-go-1.16|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-7922d05fbf-azure-test-debian-11-go-1.16)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-7922d05fbf-azure-test-debian-11-go-1.16)|
   |test-debian-11-python-3|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-7922d05fbf-azure-test-debian-11-python-3)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-7922d05fbf-azure-test-debian-11-python-3)|
   |test-debian-c-glib|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-test-debian-c-glib)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-test-debian-c-glib)|
   |test-debian-ruby|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-test-debian-ruby)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-test-debian-ruby)|
   |test-fedora-35-cpp|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-test-fedora-35-cpp)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-test-fedora-35-cpp)|
   |test-fedora-35-python-3|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-7922d05fbf-azure-test-fedora-35-python-3)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-7922d05fbf-azure-test-fedora-35-python-3)|
   |test-fedora-r-clang-sanitizer|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-7922d05fbf-azure-test-fedora-r-clang-sanitizer)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-7922d05fbf-azure-test-fedora-r-clang-sanitizer)|
   |test-r-arrow-backwards-compatibility|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-test-r-arrow-backwards-compatibility)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-test-r-arrow-backwards-compatibility)|
   |test-r-depsource-bundled|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-7922d05fbf-azure-test-r-depsource-bundled)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-7922d05fbf-azure-test-r-depsource-bundled)|
   |test-r-depsource-system|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-test-r-depsource-system)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-test-r-depsource-system)|
   |test-r-dev-duckdb|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-test-r-dev-duckdb)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-test-r-dev-duckdb)|
   |test-r-devdocs|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-test-r-devdocs)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-test-r-devdocs)|
   |test-r-gcc-11|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-test-r-gcc-11)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-test-r-gcc-11)|
   |test-r-gcc-12|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-test-r-gcc-12)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-test-r-gcc-12)|
   |test-r-install-local|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-test-r-install-local)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-test-r-install-local)|
   |test-r-linux-as-cran|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-test-r-linux-as-cran)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-test-r-linux-as-cran)|
   |test-r-linux-rchk|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-test-r-linux-rchk)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-test-r-linux-rchk)|
   |test-r-linux-valgrind|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-7922d05fbf-azure-test-r-linux-valgrind)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-7922d05fbf-azure-test-r-linux-valgrind)|
   |test-r-minimal-build|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-7922d05fbf-azure-test-r-minimal-build)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-7922d05fbf-azure-test-r-minimal-build)|
   |test-r-offline-maximal|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-test-r-offline-maximal)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-test-r-offline-maximal)|
   |test-r-offline-minimal|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-7922d05fbf-azure-test-r-offline-minimal)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-7922d05fbf-azure-test-r-offline-minimal)|
   |test-r-rhub-debian-gcc-devel-lto-latest|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-7922d05fbf-azure-test-r-rhub-debian-gcc-devel-lto-latest)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-7922d05fbf-azure-test-r-rhub-debian-gcc-devel-lto-latest)|
   |test-r-rhub-debian-gcc-release-custom-ccache|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-7922d05fbf-azure-test-r-rhub-debian-gcc-release-custom-ccache)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-7922d05fbf-azure-test-r-rhub-debian-gcc-release-custom-ccache)|
   |test-r-rhub-ubuntu-gcc-release-latest|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-7922d05fbf-azure-test-r-rhub-ubuntu-gcc-release-latest)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-7922d05fbf-azure-test-r-rhub-ubuntu-gcc-release-latest)|
   |test-r-rocker-r-base-latest|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-7922d05fbf-azure-test-r-rocker-r-base-latest)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-7922d05fbf-azure-test-r-rocker-r-base-latest)|
   |test-r-rstudio-r-base-4.1-opensuse153|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-7922d05fbf-azure-test-r-rstudio-r-base-4.1-opensuse153)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-7922d05fbf-azure-test-r-rstudio-r-base-4.1-opensuse153)|
   |test-r-rstudio-r-base-4.2-centos7-devtoolset-8|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-7922d05fbf-azure-test-r-rstudio-r-base-4.2-centos7-devtoolset-8)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-7922d05fbf-azure-test-r-rstudio-r-base-4.2-centos7-devtoolset-8)|
   |test-r-rstudio-r-base-4.2-focal|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-7922d05fbf-azure-test-r-rstudio-r-base-4.2-focal)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-7922d05fbf-azure-test-r-rstudio-r-base-4.2-focal)|
   |test-r-ubuntu-22.04|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-test-r-ubuntu-22.04)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-test-r-ubuntu-22.04)|
   |test-r-versions|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-test-r-versions)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-test-r-versions)|
   |test-skyhook-integration|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-test-skyhook-integration)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-test-skyhook-integration)|
   |test-ubuntu-18.04-cpp|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-test-ubuntu-18.04-cpp)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-test-ubuntu-18.04-cpp)|
   |test-ubuntu-18.04-cpp-release|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-test-ubuntu-18.04-cpp-release)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-test-ubuntu-18.04-cpp-release)|
   |test-ubuntu-18.04-cpp-static|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-test-ubuntu-18.04-cpp-static)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-test-ubuntu-18.04-cpp-static)|
   |test-ubuntu-18.04-r-sanitizer|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-7922d05fbf-azure-test-ubuntu-18.04-r-sanitizer)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-7922d05fbf-azure-test-ubuntu-18.04-r-sanitizer)|
   |test-ubuntu-20.04-cpp|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-test-ubuntu-20.04-cpp)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-test-ubuntu-20.04-cpp)|
   |test-ubuntu-20.04-cpp-14|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-test-ubuntu-20.04-cpp-14)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-test-ubuntu-20.04-cpp-14)|
   |test-ubuntu-20.04-cpp-17|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-test-ubuntu-20.04-cpp-17)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-test-ubuntu-20.04-cpp-17)|
   |test-ubuntu-20.04-cpp-bundled|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-test-ubuntu-20.04-cpp-bundled)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-test-ubuntu-20.04-cpp-bundled)|
   |test-ubuntu-20.04-cpp-thread-sanitizer|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-test-ubuntu-20.04-cpp-thread-sanitizer)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-test-ubuntu-20.04-cpp-thread-sanitizer)|
   |test-ubuntu-20.04-python-3|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-7922d05fbf-azure-test-ubuntu-20.04-python-3)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-7922d05fbf-azure-test-ubuntu-20.04-python-3)|
   |test-ubuntu-22.04-cpp|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-test-ubuntu-22.04-cpp)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-test-ubuntu-22.04-cpp)|
   |test-ubuntu-c-glib|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-test-ubuntu-c-glib)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-test-ubuntu-c-glib)|
   |test-ubuntu-default-docs|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-7922d05fbf-azure-test-ubuntu-default-docs)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-7922d05fbf-azure-test-ubuntu-default-docs)|
   |test-ubuntu-ruby|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-test-ubuntu-ruby)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-test-ubuntu-ruby)|
   |ubuntu-bionic-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-ubuntu-bionic-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-ubuntu-bionic-amd64)|
   |ubuntu-bionic-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-7922d05fbf-travis-ubuntu-bionic-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |ubuntu-focal-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-ubuntu-focal-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-ubuntu-focal-amd64)|
   |ubuntu-focal-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-7922d05fbf-travis-ubuntu-focal-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |ubuntu-jammy-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-ubuntu-jammy-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-ubuntu-jammy-amd64)|
   |ubuntu-jammy-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-7922d05fbf-travis-ubuntu-jammy-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |verify-rc-source-cpp-linux-almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-cpp-linux-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-cpp-linux-almalinux-8-amd64)|
   |verify-rc-source-cpp-linux-conda-latest-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-cpp-linux-conda-latest-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-cpp-linux-conda-latest-amd64)|
   |verify-rc-source-cpp-linux-ubuntu-18.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-cpp-linux-ubuntu-18.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-cpp-linux-ubuntu-18.04-amd64)|
   |verify-rc-source-cpp-linux-ubuntu-20.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-cpp-linux-ubuntu-20.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-cpp-linux-ubuntu-20.04-amd64)|
   |verify-rc-source-cpp-linux-ubuntu-22.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-cpp-linux-ubuntu-22.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-cpp-linux-ubuntu-22.04-amd64)|
   |verify-rc-source-cpp-macos-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-cpp-macos-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-cpp-macos-amd64)|
   |verify-rc-source-cpp-macos-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-cpp-macos-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-cpp-macos-arm64)|
   |verify-rc-source-cpp-macos-conda-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-cpp-macos-conda-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-cpp-macos-conda-amd64)|
   |verify-rc-source-csharp-linux-almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-csharp-linux-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-csharp-linux-almalinux-8-amd64)|
   |verify-rc-source-csharp-linux-conda-latest-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-csharp-linux-conda-latest-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-csharp-linux-conda-latest-amd64)|
   |verify-rc-source-csharp-linux-ubuntu-18.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-csharp-linux-ubuntu-18.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-csharp-linux-ubuntu-18.04-amd64)|
   |verify-rc-source-csharp-linux-ubuntu-20.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-csharp-linux-ubuntu-20.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-csharp-linux-ubuntu-20.04-amd64)|
   |verify-rc-source-csharp-linux-ubuntu-22.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-csharp-linux-ubuntu-22.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-csharp-linux-ubuntu-22.04-amd64)|
   |verify-rc-source-csharp-macos-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-csharp-macos-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-csharp-macos-amd64)|
   |verify-rc-source-csharp-macos-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-csharp-macos-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-csharp-macos-arm64)|
   |verify-rc-source-go-linux-almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-go-linux-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-go-linux-almalinux-8-amd64)|
   |verify-rc-source-go-linux-conda-latest-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-go-linux-conda-latest-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-go-linux-conda-latest-amd64)|
   |verify-rc-source-go-linux-ubuntu-18.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-go-linux-ubuntu-18.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-go-linux-ubuntu-18.04-amd64)|
   |verify-rc-source-go-linux-ubuntu-20.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-go-linux-ubuntu-20.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-go-linux-ubuntu-20.04-amd64)|
   |verify-rc-source-go-linux-ubuntu-22.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-go-linux-ubuntu-22.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-go-linux-ubuntu-22.04-amd64)|
   |verify-rc-source-go-macos-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-go-macos-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-go-macos-amd64)|
   |verify-rc-source-go-macos-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-go-macos-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-go-macos-arm64)|
   |verify-rc-source-integration-linux-almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-integration-linux-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-integration-linux-almalinux-8-amd64)|
   |verify-rc-source-integration-linux-conda-latest-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-integration-linux-conda-latest-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-integration-linux-conda-latest-amd64)|
   |verify-rc-source-integration-linux-ubuntu-18.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-integration-linux-ubuntu-18.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-integration-linux-ubuntu-18.04-amd64)|
   |verify-rc-source-integration-linux-ubuntu-20.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-integration-linux-ubuntu-20.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-integration-linux-ubuntu-20.04-amd64)|
   |verify-rc-source-integration-linux-ubuntu-22.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-integration-linux-ubuntu-22.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-integration-linux-ubuntu-22.04-amd64)|
   |verify-rc-source-integration-macos-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-integration-macos-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-integration-macos-amd64)|
   |verify-rc-source-integration-macos-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-integration-macos-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-integration-macos-arm64)|
   |verify-rc-source-integration-macos-conda-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-integration-macos-conda-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-integration-macos-conda-amd64)|
   |verify-rc-source-java-linux-almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-java-linux-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-java-linux-almalinux-8-amd64)|
   |verify-rc-source-java-linux-conda-latest-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-java-linux-conda-latest-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-java-linux-conda-latest-amd64)|
   |verify-rc-source-java-linux-ubuntu-18.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-java-linux-ubuntu-18.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-java-linux-ubuntu-18.04-amd64)|
   |verify-rc-source-java-linux-ubuntu-20.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-java-linux-ubuntu-20.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-java-linux-ubuntu-20.04-amd64)|
   |verify-rc-source-java-linux-ubuntu-22.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-java-linux-ubuntu-22.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-java-linux-ubuntu-22.04-amd64)|
   |verify-rc-source-java-macos-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-java-macos-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-java-macos-amd64)|
   |verify-rc-source-js-linux-almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-js-linux-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-js-linux-almalinux-8-amd64)|
   |verify-rc-source-js-linux-conda-latest-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-js-linux-conda-latest-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-js-linux-conda-latest-amd64)|
   |verify-rc-source-js-linux-ubuntu-18.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-js-linux-ubuntu-18.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-js-linux-ubuntu-18.04-amd64)|
   |verify-rc-source-js-linux-ubuntu-20.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-js-linux-ubuntu-20.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-js-linux-ubuntu-20.04-amd64)|
   |verify-rc-source-js-linux-ubuntu-22.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-js-linux-ubuntu-22.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-js-linux-ubuntu-22.04-amd64)|
   |verify-rc-source-js-macos-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-js-macos-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-js-macos-amd64)|
   |verify-rc-source-js-macos-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-js-macos-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-js-macos-arm64)|
   |verify-rc-source-python-linux-almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-python-linux-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-python-linux-almalinux-8-amd64)|
   |verify-rc-source-python-linux-conda-latest-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-python-linux-conda-latest-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-python-linux-conda-latest-amd64)|
   |verify-rc-source-python-linux-ubuntu-18.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-python-linux-ubuntu-18.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-python-linux-ubuntu-18.04-amd64)|
   |verify-rc-source-python-linux-ubuntu-20.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-python-linux-ubuntu-20.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-python-linux-ubuntu-20.04-amd64)|
   |verify-rc-source-python-linux-ubuntu-22.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-python-linux-ubuntu-22.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-python-linux-ubuntu-22.04-amd64)|
   |verify-rc-source-python-macos-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-python-macos-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-python-macos-amd64)|
   |verify-rc-source-python-macos-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-python-macos-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-python-macos-arm64)|
   |verify-rc-source-python-macos-conda-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-python-macos-conda-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-python-macos-conda-amd64)|
   |verify-rc-source-ruby-linux-almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-ruby-linux-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-ruby-linux-almalinux-8-amd64)|
   |verify-rc-source-ruby-linux-conda-latest-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-ruby-linux-conda-latest-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-ruby-linux-conda-latest-amd64)|
   |verify-rc-source-ruby-linux-ubuntu-18.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-ruby-linux-ubuntu-18.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-ruby-linux-ubuntu-18.04-amd64)|
   |verify-rc-source-ruby-linux-ubuntu-20.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-ruby-linux-ubuntu-20.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-ruby-linux-ubuntu-20.04-amd64)|
   |verify-rc-source-ruby-linux-ubuntu-22.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-ruby-linux-ubuntu-22.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-ruby-linux-ubuntu-22.04-amd64)|
   |verify-rc-source-ruby-macos-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-ruby-macos-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-ruby-macos-amd64)|
   |verify-rc-source-ruby-macos-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-ruby-macos-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-ruby-macos-arm64)|
   |verify-rc-source-windows|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-verify-rc-source-windows)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-verify-rc-source-windows)|
   |wheel-macos-big-sur-cp310-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-wheel-macos-big-sur-cp310-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-wheel-macos-big-sur-cp310-arm64)|
   |wheel-macos-big-sur-cp310-universal2|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-wheel-macos-big-sur-cp310-universal2)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-wheel-macos-big-sur-cp310-universal2)|
   |wheel-macos-big-sur-cp38-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-wheel-macos-big-sur-cp38-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-wheel-macos-big-sur-cp38-arm64)|
   |wheel-macos-big-sur-cp39-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-wheel-macos-big-sur-cp39-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-wheel-macos-big-sur-cp39-arm64)|
   |wheel-macos-big-sur-cp39-universal2|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-wheel-macos-big-sur-cp39-universal2)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-wheel-macos-big-sur-cp39-universal2)|
   |wheel-macos-high-sierra-cp310-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-wheel-macos-high-sierra-cp310-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-wheel-macos-high-sierra-cp310-amd64)|
   |wheel-macos-high-sierra-cp37-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-wheel-macos-high-sierra-cp37-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-wheel-macos-high-sierra-cp37-amd64)|
   |wheel-macos-high-sierra-cp38-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-wheel-macos-high-sierra-cp38-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-wheel-macos-high-sierra-cp38-amd64)|
   |wheel-macos-high-sierra-cp39-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-wheel-macos-high-sierra-cp39-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-wheel-macos-high-sierra-cp39-amd64)|
   |wheel-macos-mavericks-cp310-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-wheel-macos-mavericks-cp310-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-wheel-macos-mavericks-cp310-amd64)|
   |wheel-macos-mavericks-cp37-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-wheel-macos-mavericks-cp37-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-wheel-macos-mavericks-cp37-amd64)|
   |wheel-macos-mavericks-cp38-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-wheel-macos-mavericks-cp38-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-wheel-macos-mavericks-cp38-amd64)|
   |wheel-macos-mavericks-cp39-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-wheel-macos-mavericks-cp39-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-wheel-macos-mavericks-cp39-amd64)|
   |wheel-manylinux2014-cp310-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-wheel-manylinux2014-cp310-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-wheel-manylinux2014-cp310-amd64)|
   |wheel-manylinux2014-cp310-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-7922d05fbf-travis-wheel-manylinux2014-cp310-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |wheel-manylinux2014-cp37-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-wheel-manylinux2014-cp37-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-wheel-manylinux2014-cp37-amd64)|
   |wheel-manylinux2014-cp37-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-7922d05fbf-travis-wheel-manylinux2014-cp37-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |wheel-manylinux2014-cp38-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-wheel-manylinux2014-cp38-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-wheel-manylinux2014-cp38-amd64)|
   |wheel-manylinux2014-cp38-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-7922d05fbf-travis-wheel-manylinux2014-cp38-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |wheel-manylinux2014-cp39-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-wheel-manylinux2014-cp39-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-wheel-manylinux2014-cp39-amd64)|
   |wheel-manylinux2014-cp39-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-7922d05fbf-travis-wheel-manylinux2014-cp39-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |wheel-windows-cp310-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-wheel-windows-cp310-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-wheel-windows-cp310-amd64)|
   |wheel-windows-cp37-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-wheel-windows-cp37-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-wheel-windows-cp37-amd64)|
   |wheel-windows-cp38-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-wheel-windows-cp38-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-wheel-windows-cp38-amd64)|
   |wheel-windows-cp39-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-7922d05fbf-github-wheel-windows-cp39-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-7922d05fbf-github-wheel-windows-cp39-amd64)|


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] github-actions[bot] commented on pull request #13892: ARROW-12175: [C++] Fix CMake packages

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on PR #13892:
URL: https://github.com/apache/arrow/pull/13892#issuecomment-1229207616

   Revision: 3e963ff6c12a1e95f5e246820b4760b2969e9c29
   
   Submitted crossbow builds: [ursacomputing/crossbow @ actions-d56aed9716](https://github.com/ursacomputing/crossbow/branches/all?query=actions-d56aed9716)
   
   |Task|Status|
   |----|------|
   |almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-almalinux-8-amd64)|
   |almalinux-8-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-d56aed9716-travis-almalinux-8-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |almalinux-9-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-almalinux-9-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-almalinux-9-amd64)|
   |almalinux-9-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-d56aed9716-travis-almalinux-9-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |amazon-linux-2-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-amazon-linux-2-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-amazon-linux-2-amd64)|
   |amazon-linux-2-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-d56aed9716-travis-amazon-linux-2-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |centos-7-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-centos-7-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-centos-7-amd64)|
   |centos-8-stream-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-centos-8-stream-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-centos-8-stream-amd64)|
   |centos-8-stream-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-d56aed9716-travis-centos-8-stream-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |centos-9-stream-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-centos-9-stream-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-centos-9-stream-amd64)|
   |centos-9-stream-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-d56aed9716-travis-centos-9-stream-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |conan-maximum|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-conan-maximum)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-conan-maximum)|
   |conan-minimum|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-conan-minimum)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-conan-minimum)|
   |conda-clean|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-d56aed9716-azure-conda-clean)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-d56aed9716-azure-conda-clean)|
   |conda-linux-gcc-py310-arm64|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-d56aed9716-azure-conda-linux-gcc-py310-arm64)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-d56aed9716-azure-conda-linux-gcc-py310-arm64)|
   |conda-linux-gcc-py310-cpu|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-d56aed9716-azure-conda-linux-gcc-py310-cpu)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-d56aed9716-azure-conda-linux-gcc-py310-cpu)|
   |conda-linux-gcc-py310-cuda|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-d56aed9716-azure-conda-linux-gcc-py310-cuda)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-d56aed9716-azure-conda-linux-gcc-py310-cuda)|
   |conda-linux-gcc-py310-ppc64le|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-d56aed9716-azure-conda-linux-gcc-py310-ppc64le)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-d56aed9716-azure-conda-linux-gcc-py310-ppc64le)|
   |conda-linux-gcc-py37-arm64|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-d56aed9716-azure-conda-linux-gcc-py37-arm64)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-d56aed9716-azure-conda-linux-gcc-py37-arm64)|
   |conda-linux-gcc-py37-cpu-r40|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-d56aed9716-azure-conda-linux-gcc-py37-cpu-r40)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-d56aed9716-azure-conda-linux-gcc-py37-cpu-r40)|
   |conda-linux-gcc-py37-cpu-r41|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-d56aed9716-azure-conda-linux-gcc-py37-cpu-r41)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-d56aed9716-azure-conda-linux-gcc-py37-cpu-r41)|
   |conda-linux-gcc-py37-cuda|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-d56aed9716-azure-conda-linux-gcc-py37-cuda)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-d56aed9716-azure-conda-linux-gcc-py37-cuda)|
   |conda-linux-gcc-py37-ppc64le|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-d56aed9716-azure-conda-linux-gcc-py37-ppc64le)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-d56aed9716-azure-conda-linux-gcc-py37-ppc64le)|
   |conda-linux-gcc-py38-arm64|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-d56aed9716-azure-conda-linux-gcc-py38-arm64)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-d56aed9716-azure-conda-linux-gcc-py38-arm64)|
   |conda-linux-gcc-py38-cpu|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-d56aed9716-azure-conda-linux-gcc-py38-cpu)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-d56aed9716-azure-conda-linux-gcc-py38-cpu)|
   |conda-linux-gcc-py38-cuda|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-d56aed9716-azure-conda-linux-gcc-py38-cuda)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-d56aed9716-azure-conda-linux-gcc-py38-cuda)|
   |conda-linux-gcc-py38-ppc64le|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-d56aed9716-azure-conda-linux-gcc-py38-ppc64le)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-d56aed9716-azure-conda-linux-gcc-py38-ppc64le)|
   |conda-linux-gcc-py39-arm64|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-d56aed9716-azure-conda-linux-gcc-py39-arm64)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-d56aed9716-azure-conda-linux-gcc-py39-arm64)|
   |conda-linux-gcc-py39-cpu|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-d56aed9716-azure-conda-linux-gcc-py39-cpu)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-d56aed9716-azure-conda-linux-gcc-py39-cpu)|
   |conda-linux-gcc-py39-cuda|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-d56aed9716-azure-conda-linux-gcc-py39-cuda)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-d56aed9716-azure-conda-linux-gcc-py39-cuda)|
   |conda-linux-gcc-py39-ppc64le|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-d56aed9716-azure-conda-linux-gcc-py39-ppc64le)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-d56aed9716-azure-conda-linux-gcc-py39-ppc64le)|
   |conda-osx-arm64-clang-py310|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-d56aed9716-azure-conda-osx-arm64-clang-py310)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-d56aed9716-azure-conda-osx-arm64-clang-py310)|
   |conda-osx-arm64-clang-py38|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-d56aed9716-azure-conda-osx-arm64-clang-py38)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-d56aed9716-azure-conda-osx-arm64-clang-py38)|
   |conda-osx-arm64-clang-py39|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-d56aed9716-azure-conda-osx-arm64-clang-py39)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-d56aed9716-azure-conda-osx-arm64-clang-py39)|
   |conda-osx-clang-py310|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-d56aed9716-azure-conda-osx-clang-py310)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-d56aed9716-azure-conda-osx-clang-py310)|
   |conda-osx-clang-py37-r40|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-d56aed9716-azure-conda-osx-clang-py37-r40)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-d56aed9716-azure-conda-osx-clang-py37-r40)|
   |conda-osx-clang-py37-r41|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-d56aed9716-azure-conda-osx-clang-py37-r41)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-d56aed9716-azure-conda-osx-clang-py37-r41)|
   |conda-osx-clang-py38|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-d56aed9716-azure-conda-osx-clang-py38)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-d56aed9716-azure-conda-osx-clang-py38)|
   |conda-osx-clang-py39|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-d56aed9716-azure-conda-osx-clang-py39)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-d56aed9716-azure-conda-osx-clang-py39)|
   |conda-win-vs2017-py310|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-d56aed9716-azure-conda-win-vs2017-py310)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-d56aed9716-azure-conda-win-vs2017-py310)|
   |conda-win-vs2017-py37-r40|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-d56aed9716-azure-conda-win-vs2017-py37-r40)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-d56aed9716-azure-conda-win-vs2017-py37-r40)|
   |conda-win-vs2017-py37-r41|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-d56aed9716-azure-conda-win-vs2017-py37-r41)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-d56aed9716-azure-conda-win-vs2017-py37-r41)|
   |conda-win-vs2017-py38|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-d56aed9716-azure-conda-win-vs2017-py38)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-d56aed9716-azure-conda-win-vs2017-py38)|
   |conda-win-vs2017-py39|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-d56aed9716-azure-conda-win-vs2017-py39)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-d56aed9716-azure-conda-win-vs2017-py39)|
   |debian-bookworm-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-debian-bookworm-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-debian-bookworm-amd64)|
   |debian-bookworm-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-d56aed9716-travis-debian-bookworm-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |debian-bullseye-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-debian-bullseye-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-debian-bullseye-amd64)|
   |debian-bullseye-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-d56aed9716-travis-debian-bullseye-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |example-cpp-minimal-build-static|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-example-cpp-minimal-build-static)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-example-cpp-minimal-build-static)|
   |example-cpp-minimal-build-static-system-dependency|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-example-cpp-minimal-build-static-system-dependency)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-example-cpp-minimal-build-static-system-dependency)|
   |example-python-minimal-build-fedora-conda|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-example-python-minimal-build-fedora-conda)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-example-python-minimal-build-fedora-conda)|
   |example-python-minimal-build-ubuntu-venv|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-example-python-minimal-build-ubuntu-venv)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-example-python-minimal-build-ubuntu-venv)|
   |homebrew-cpp|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-homebrew-cpp)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-homebrew-cpp)|
   |homebrew-r-autobrew|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-homebrew-r-autobrew)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-homebrew-r-autobrew)|
   |homebrew-r-brew|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-homebrew-r-brew)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-homebrew-r-brew)|
   |java-jars|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-java-jars)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-java-jars)|
   |nuget|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-nuget)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-nuget)|
   |python-sdist|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-python-sdist)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-python-sdist)|
   |r-binary-packages|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-r-binary-packages)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-r-binary-packages)|
   |test-alpine-linux-cpp|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-test-alpine-linux-cpp)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-test-alpine-linux-cpp)|
   |test-build-cpp-fuzz|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-test-build-cpp-fuzz)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-test-build-cpp-fuzz)|
   |test-build-vcpkg-win|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-test-build-vcpkg-win)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-test-build-vcpkg-win)|
   |test-conda-cpp|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-test-conda-cpp)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-test-conda-cpp)|
   |test-conda-cpp-valgrind|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-d56aed9716-azure-test-conda-cpp-valgrind)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-d56aed9716-azure-test-conda-cpp-valgrind)|
   |test-conda-python-3.10|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-test-conda-python-3.10)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-test-conda-python-3.10)|
   |test-conda-python-3.7|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-test-conda-python-3.7)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-test-conda-python-3.7)|
   |test-conda-python-3.7-hdfs-2.9.2|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-test-conda-python-3.7-hdfs-2.9.2)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-test-conda-python-3.7-hdfs-2.9.2)|
   |test-conda-python-3.7-hdfs-3.2.1|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-test-conda-python-3.7-hdfs-3.2.1)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-test-conda-python-3.7-hdfs-3.2.1)|
   |test-conda-python-3.7-kartothek-latest|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-test-conda-python-3.7-kartothek-latest)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-test-conda-python-3.7-kartothek-latest)|
   |test-conda-python-3.7-kartothek-master|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-test-conda-python-3.7-kartothek-master)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-test-conda-python-3.7-kartothek-master)|
   |test-conda-python-3.7-pandas-0.24|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-test-conda-python-3.7-pandas-0.24)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-test-conda-python-3.7-pandas-0.24)|
   |test-conda-python-3.7-pandas-latest|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-test-conda-python-3.7-pandas-latest)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-test-conda-python-3.7-pandas-latest)|
   |test-conda-python-3.7-spark-v3.1.2|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-test-conda-python-3.7-spark-v3.1.2)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-test-conda-python-3.7-spark-v3.1.2)|
   |test-conda-python-3.8|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-test-conda-python-3.8)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-test-conda-python-3.8)|
   |test-conda-python-3.8-hypothesis|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-test-conda-python-3.8-hypothesis)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-test-conda-python-3.8-hypothesis)|
   |test-conda-python-3.8-pandas-latest|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-test-conda-python-3.8-pandas-latest)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-test-conda-python-3.8-pandas-latest)|
   |test-conda-python-3.8-pandas-nightly|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-test-conda-python-3.8-pandas-nightly)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-test-conda-python-3.8-pandas-nightly)|
   |test-conda-python-3.8-spark-v3.2.0|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-test-conda-python-3.8-spark-v3.2.0)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-test-conda-python-3.8-spark-v3.2.0)|
   |test-conda-python-3.9|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-test-conda-python-3.9)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-test-conda-python-3.9)|
   |test-conda-python-3.9-dask-latest|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-test-conda-python-3.9-dask-latest)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-test-conda-python-3.9-dask-latest)|
   |test-conda-python-3.9-dask-master|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-test-conda-python-3.9-dask-master)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-test-conda-python-3.9-dask-master)|
   |test-conda-python-3.9-pandas-master|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-test-conda-python-3.9-pandas-master)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-test-conda-python-3.9-pandas-master)|
   |test-conda-python-3.9-spark-master|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-test-conda-python-3.9-spark-master)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-test-conda-python-3.9-spark-master)|
   |test-debian-10-cpp-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-test-debian-10-cpp-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-test-debian-10-cpp-amd64)|
   |test-debian-10-cpp-i386|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-test-debian-10-cpp-i386)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-test-debian-10-cpp-i386)|
   |test-debian-11-cpp-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-test-debian-11-cpp-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-test-debian-11-cpp-amd64)|
   |test-debian-11-cpp-i386|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-test-debian-11-cpp-i386)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-test-debian-11-cpp-i386)|
   |test-debian-11-go-1.16|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-d56aed9716-azure-test-debian-11-go-1.16)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-d56aed9716-azure-test-debian-11-go-1.16)|
   |test-debian-11-python-3|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-d56aed9716-azure-test-debian-11-python-3)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-d56aed9716-azure-test-debian-11-python-3)|
   |test-debian-c-glib|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-test-debian-c-glib)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-test-debian-c-glib)|
   |test-debian-ruby|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-test-debian-ruby)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-test-debian-ruby)|
   |test-fedora-35-cpp|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-test-fedora-35-cpp)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-test-fedora-35-cpp)|
   |test-fedora-35-python-3|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-d56aed9716-azure-test-fedora-35-python-3)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-d56aed9716-azure-test-fedora-35-python-3)|
   |test-fedora-r-clang-sanitizer|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-d56aed9716-azure-test-fedora-r-clang-sanitizer)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-d56aed9716-azure-test-fedora-r-clang-sanitizer)|
   |test-r-arrow-backwards-compatibility|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-test-r-arrow-backwards-compatibility)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-test-r-arrow-backwards-compatibility)|
   |test-r-depsource-bundled|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-d56aed9716-azure-test-r-depsource-bundled)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-d56aed9716-azure-test-r-depsource-bundled)|
   |test-r-depsource-system|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-test-r-depsource-system)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-test-r-depsource-system)|
   |test-r-dev-duckdb|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-test-r-dev-duckdb)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-test-r-dev-duckdb)|
   |test-r-devdocs|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-test-r-devdocs)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-test-r-devdocs)|
   |test-r-gcc-11|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-test-r-gcc-11)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-test-r-gcc-11)|
   |test-r-gcc-12|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-test-r-gcc-12)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-test-r-gcc-12)|
   |test-r-install-local|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-test-r-install-local)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-test-r-install-local)|
   |test-r-linux-as-cran|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-test-r-linux-as-cran)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-test-r-linux-as-cran)|
   |test-r-linux-rchk|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-test-r-linux-rchk)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-test-r-linux-rchk)|
   |test-r-linux-valgrind|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-d56aed9716-azure-test-r-linux-valgrind)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-d56aed9716-azure-test-r-linux-valgrind)|
   |test-r-minimal-build|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-d56aed9716-azure-test-r-minimal-build)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-d56aed9716-azure-test-r-minimal-build)|
   |test-r-offline-maximal|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-test-r-offline-maximal)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-test-r-offline-maximal)|
   |test-r-offline-minimal|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-d56aed9716-azure-test-r-offline-minimal)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-d56aed9716-azure-test-r-offline-minimal)|
   |test-r-rhub-debian-gcc-devel-lto-latest|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-d56aed9716-azure-test-r-rhub-debian-gcc-devel-lto-latest)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-d56aed9716-azure-test-r-rhub-debian-gcc-devel-lto-latest)|
   |test-r-rhub-debian-gcc-release-custom-ccache|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-d56aed9716-azure-test-r-rhub-debian-gcc-release-custom-ccache)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-d56aed9716-azure-test-r-rhub-debian-gcc-release-custom-ccache)|
   |test-r-rhub-ubuntu-gcc-release-latest|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-d56aed9716-azure-test-r-rhub-ubuntu-gcc-release-latest)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-d56aed9716-azure-test-r-rhub-ubuntu-gcc-release-latest)|
   |test-r-rocker-r-base-latest|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-d56aed9716-azure-test-r-rocker-r-base-latest)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-d56aed9716-azure-test-r-rocker-r-base-latest)|
   |test-r-rstudio-r-base-4.1-opensuse153|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-d56aed9716-azure-test-r-rstudio-r-base-4.1-opensuse153)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-d56aed9716-azure-test-r-rstudio-r-base-4.1-opensuse153)|
   |test-r-rstudio-r-base-4.2-centos7-devtoolset-8|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-d56aed9716-azure-test-r-rstudio-r-base-4.2-centos7-devtoolset-8)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-d56aed9716-azure-test-r-rstudio-r-base-4.2-centos7-devtoolset-8)|
   |test-r-rstudio-r-base-4.2-focal|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-d56aed9716-azure-test-r-rstudio-r-base-4.2-focal)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-d56aed9716-azure-test-r-rstudio-r-base-4.2-focal)|
   |test-r-ubuntu-22.04|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-test-r-ubuntu-22.04)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-test-r-ubuntu-22.04)|
   |test-r-versions|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-test-r-versions)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-test-r-versions)|
   |test-skyhook-integration|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-test-skyhook-integration)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-test-skyhook-integration)|
   |test-ubuntu-18.04-cpp|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-test-ubuntu-18.04-cpp)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-test-ubuntu-18.04-cpp)|
   |test-ubuntu-18.04-cpp-release|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-test-ubuntu-18.04-cpp-release)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-test-ubuntu-18.04-cpp-release)|
   |test-ubuntu-18.04-cpp-static|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-test-ubuntu-18.04-cpp-static)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-test-ubuntu-18.04-cpp-static)|
   |test-ubuntu-18.04-r-sanitizer|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-d56aed9716-azure-test-ubuntu-18.04-r-sanitizer)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-d56aed9716-azure-test-ubuntu-18.04-r-sanitizer)|
   |test-ubuntu-20.04-cpp|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-test-ubuntu-20.04-cpp)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-test-ubuntu-20.04-cpp)|
   |test-ubuntu-20.04-cpp-14|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-test-ubuntu-20.04-cpp-14)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-test-ubuntu-20.04-cpp-14)|
   |test-ubuntu-20.04-cpp-17|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-test-ubuntu-20.04-cpp-17)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-test-ubuntu-20.04-cpp-17)|
   |test-ubuntu-20.04-cpp-bundled|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-test-ubuntu-20.04-cpp-bundled)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-test-ubuntu-20.04-cpp-bundled)|
   |test-ubuntu-20.04-cpp-thread-sanitizer|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-test-ubuntu-20.04-cpp-thread-sanitizer)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-test-ubuntu-20.04-cpp-thread-sanitizer)|
   |test-ubuntu-20.04-python-3|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-d56aed9716-azure-test-ubuntu-20.04-python-3)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-d56aed9716-azure-test-ubuntu-20.04-python-3)|
   |test-ubuntu-22.04-cpp|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-test-ubuntu-22.04-cpp)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-test-ubuntu-22.04-cpp)|
   |test-ubuntu-c-glib|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-test-ubuntu-c-glib)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-test-ubuntu-c-glib)|
   |test-ubuntu-default-docs|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-d56aed9716-azure-test-ubuntu-default-docs)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-d56aed9716-azure-test-ubuntu-default-docs)|
   |test-ubuntu-ruby|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-test-ubuntu-ruby)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-test-ubuntu-ruby)|
   |ubuntu-bionic-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-ubuntu-bionic-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-ubuntu-bionic-amd64)|
   |ubuntu-bionic-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-d56aed9716-travis-ubuntu-bionic-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |ubuntu-focal-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-ubuntu-focal-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-ubuntu-focal-amd64)|
   |ubuntu-focal-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-d56aed9716-travis-ubuntu-focal-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |ubuntu-jammy-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-ubuntu-jammy-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-ubuntu-jammy-amd64)|
   |ubuntu-jammy-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-d56aed9716-travis-ubuntu-jammy-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |verify-rc-source-cpp-linux-almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-cpp-linux-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-cpp-linux-almalinux-8-amd64)|
   |verify-rc-source-cpp-linux-conda-latest-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-cpp-linux-conda-latest-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-cpp-linux-conda-latest-amd64)|
   |verify-rc-source-cpp-linux-ubuntu-18.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-cpp-linux-ubuntu-18.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-cpp-linux-ubuntu-18.04-amd64)|
   |verify-rc-source-cpp-linux-ubuntu-20.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-cpp-linux-ubuntu-20.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-cpp-linux-ubuntu-20.04-amd64)|
   |verify-rc-source-cpp-linux-ubuntu-22.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-cpp-linux-ubuntu-22.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-cpp-linux-ubuntu-22.04-amd64)|
   |verify-rc-source-cpp-macos-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-cpp-macos-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-cpp-macos-amd64)|
   |verify-rc-source-cpp-macos-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-cpp-macos-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-cpp-macos-arm64)|
   |verify-rc-source-cpp-macos-conda-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-cpp-macos-conda-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-cpp-macos-conda-amd64)|
   |verify-rc-source-csharp-linux-almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-csharp-linux-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-csharp-linux-almalinux-8-amd64)|
   |verify-rc-source-csharp-linux-conda-latest-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-csharp-linux-conda-latest-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-csharp-linux-conda-latest-amd64)|
   |verify-rc-source-csharp-linux-ubuntu-18.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-csharp-linux-ubuntu-18.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-csharp-linux-ubuntu-18.04-amd64)|
   |verify-rc-source-csharp-linux-ubuntu-20.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-csharp-linux-ubuntu-20.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-csharp-linux-ubuntu-20.04-amd64)|
   |verify-rc-source-csharp-linux-ubuntu-22.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-csharp-linux-ubuntu-22.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-csharp-linux-ubuntu-22.04-amd64)|
   |verify-rc-source-csharp-macos-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-csharp-macos-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-csharp-macos-amd64)|
   |verify-rc-source-csharp-macos-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-csharp-macos-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-csharp-macos-arm64)|
   |verify-rc-source-go-linux-almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-go-linux-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-go-linux-almalinux-8-amd64)|
   |verify-rc-source-go-linux-conda-latest-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-go-linux-conda-latest-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-go-linux-conda-latest-amd64)|
   |verify-rc-source-go-linux-ubuntu-18.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-go-linux-ubuntu-18.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-go-linux-ubuntu-18.04-amd64)|
   |verify-rc-source-go-linux-ubuntu-20.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-go-linux-ubuntu-20.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-go-linux-ubuntu-20.04-amd64)|
   |verify-rc-source-go-linux-ubuntu-22.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-go-linux-ubuntu-22.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-go-linux-ubuntu-22.04-amd64)|
   |verify-rc-source-go-macos-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-go-macos-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-go-macos-amd64)|
   |verify-rc-source-go-macos-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-go-macos-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-go-macos-arm64)|
   |verify-rc-source-integration-linux-almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-integration-linux-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-integration-linux-almalinux-8-amd64)|
   |verify-rc-source-integration-linux-conda-latest-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-integration-linux-conda-latest-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-integration-linux-conda-latest-amd64)|
   |verify-rc-source-integration-linux-ubuntu-18.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-integration-linux-ubuntu-18.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-integration-linux-ubuntu-18.04-amd64)|
   |verify-rc-source-integration-linux-ubuntu-20.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-integration-linux-ubuntu-20.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-integration-linux-ubuntu-20.04-amd64)|
   |verify-rc-source-integration-linux-ubuntu-22.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-integration-linux-ubuntu-22.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-integration-linux-ubuntu-22.04-amd64)|
   |verify-rc-source-integration-macos-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-integration-macos-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-integration-macos-amd64)|
   |verify-rc-source-integration-macos-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-integration-macos-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-integration-macos-arm64)|
   |verify-rc-source-integration-macos-conda-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-integration-macos-conda-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-integration-macos-conda-amd64)|
   |verify-rc-source-java-linux-almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-java-linux-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-java-linux-almalinux-8-amd64)|
   |verify-rc-source-java-linux-conda-latest-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-java-linux-conda-latest-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-java-linux-conda-latest-amd64)|
   |verify-rc-source-java-linux-ubuntu-18.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-java-linux-ubuntu-18.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-java-linux-ubuntu-18.04-amd64)|
   |verify-rc-source-java-linux-ubuntu-20.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-java-linux-ubuntu-20.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-java-linux-ubuntu-20.04-amd64)|
   |verify-rc-source-java-linux-ubuntu-22.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-java-linux-ubuntu-22.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-java-linux-ubuntu-22.04-amd64)|
   |verify-rc-source-java-macos-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-java-macos-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-java-macos-amd64)|
   |verify-rc-source-js-linux-almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-js-linux-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-js-linux-almalinux-8-amd64)|
   |verify-rc-source-js-linux-conda-latest-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-js-linux-conda-latest-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-js-linux-conda-latest-amd64)|
   |verify-rc-source-js-linux-ubuntu-18.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-js-linux-ubuntu-18.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-js-linux-ubuntu-18.04-amd64)|
   |verify-rc-source-js-linux-ubuntu-20.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-js-linux-ubuntu-20.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-js-linux-ubuntu-20.04-amd64)|
   |verify-rc-source-js-linux-ubuntu-22.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-js-linux-ubuntu-22.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-js-linux-ubuntu-22.04-amd64)|
   |verify-rc-source-js-macos-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-js-macos-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-js-macos-amd64)|
   |verify-rc-source-js-macos-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-js-macos-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-js-macos-arm64)|
   |verify-rc-source-python-linux-almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-python-linux-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-python-linux-almalinux-8-amd64)|
   |verify-rc-source-python-linux-conda-latest-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-python-linux-conda-latest-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-python-linux-conda-latest-amd64)|
   |verify-rc-source-python-linux-ubuntu-18.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-python-linux-ubuntu-18.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-python-linux-ubuntu-18.04-amd64)|
   |verify-rc-source-python-linux-ubuntu-20.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-python-linux-ubuntu-20.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-python-linux-ubuntu-20.04-amd64)|
   |verify-rc-source-python-linux-ubuntu-22.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-python-linux-ubuntu-22.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-python-linux-ubuntu-22.04-amd64)|
   |verify-rc-source-python-macos-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-python-macos-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-python-macos-amd64)|
   |verify-rc-source-python-macos-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-python-macos-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-python-macos-arm64)|
   |verify-rc-source-python-macos-conda-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-python-macos-conda-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-python-macos-conda-amd64)|
   |verify-rc-source-ruby-linux-almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-ruby-linux-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-ruby-linux-almalinux-8-amd64)|
   |verify-rc-source-ruby-linux-conda-latest-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-ruby-linux-conda-latest-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-ruby-linux-conda-latest-amd64)|
   |verify-rc-source-ruby-linux-ubuntu-18.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-ruby-linux-ubuntu-18.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-ruby-linux-ubuntu-18.04-amd64)|
   |verify-rc-source-ruby-linux-ubuntu-20.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-ruby-linux-ubuntu-20.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-ruby-linux-ubuntu-20.04-amd64)|
   |verify-rc-source-ruby-linux-ubuntu-22.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-ruby-linux-ubuntu-22.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-ruby-linux-ubuntu-22.04-amd64)|
   |verify-rc-source-ruby-macos-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-ruby-macos-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-ruby-macos-amd64)|
   |verify-rc-source-ruby-macos-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-ruby-macos-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-ruby-macos-arm64)|
   |verify-rc-source-windows|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-verify-rc-source-windows)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-verify-rc-source-windows)|
   |wheel-macos-big-sur-cp310-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-wheel-macos-big-sur-cp310-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-wheel-macos-big-sur-cp310-arm64)|
   |wheel-macos-big-sur-cp310-universal2|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-wheel-macos-big-sur-cp310-universal2)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-wheel-macos-big-sur-cp310-universal2)|
   |wheel-macos-big-sur-cp38-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-wheel-macos-big-sur-cp38-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-wheel-macos-big-sur-cp38-arm64)|
   |wheel-macos-big-sur-cp39-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-wheel-macos-big-sur-cp39-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-wheel-macos-big-sur-cp39-arm64)|
   |wheel-macos-big-sur-cp39-universal2|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-wheel-macos-big-sur-cp39-universal2)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-wheel-macos-big-sur-cp39-universal2)|
   |wheel-macos-high-sierra-cp310-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-wheel-macos-high-sierra-cp310-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-wheel-macos-high-sierra-cp310-amd64)|
   |wheel-macos-high-sierra-cp37-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-wheel-macos-high-sierra-cp37-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-wheel-macos-high-sierra-cp37-amd64)|
   |wheel-macos-high-sierra-cp38-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-wheel-macos-high-sierra-cp38-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-wheel-macos-high-sierra-cp38-amd64)|
   |wheel-macos-high-sierra-cp39-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-wheel-macos-high-sierra-cp39-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-wheel-macos-high-sierra-cp39-amd64)|
   |wheel-macos-mavericks-cp310-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-wheel-macos-mavericks-cp310-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-wheel-macos-mavericks-cp310-amd64)|
   |wheel-macos-mavericks-cp37-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-wheel-macos-mavericks-cp37-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-wheel-macos-mavericks-cp37-amd64)|
   |wheel-macos-mavericks-cp38-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-wheel-macos-mavericks-cp38-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-wheel-macos-mavericks-cp38-amd64)|
   |wheel-macos-mavericks-cp39-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-wheel-macos-mavericks-cp39-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-wheel-macos-mavericks-cp39-amd64)|
   |wheel-manylinux2014-cp310-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-wheel-manylinux2014-cp310-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-wheel-manylinux2014-cp310-amd64)|
   |wheel-manylinux2014-cp310-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-d56aed9716-travis-wheel-manylinux2014-cp310-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |wheel-manylinux2014-cp37-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-wheel-manylinux2014-cp37-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-wheel-manylinux2014-cp37-amd64)|
   |wheel-manylinux2014-cp37-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-d56aed9716-travis-wheel-manylinux2014-cp37-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |wheel-manylinux2014-cp38-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-wheel-manylinux2014-cp38-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-wheel-manylinux2014-cp38-amd64)|
   |wheel-manylinux2014-cp38-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-d56aed9716-travis-wheel-manylinux2014-cp38-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |wheel-manylinux2014-cp39-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-wheel-manylinux2014-cp39-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-wheel-manylinux2014-cp39-amd64)|
   |wheel-manylinux2014-cp39-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-d56aed9716-travis-wheel-manylinux2014-cp39-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |wheel-windows-cp310-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-wheel-windows-cp310-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-wheel-windows-cp310-amd64)|
   |wheel-windows-cp37-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-wheel-windows-cp37-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-wheel-windows-cp37-amd64)|
   |wheel-windows-cp38-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-wheel-windows-cp38-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-wheel-windows-cp38-amd64)|
   |wheel-windows-cp39-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-d56aed9716-github-wheel-windows-cp39-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-d56aed9716-github-wheel-windows-cp39-amd64)|


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] github-actions[bot] commented on pull request #13892: ARROW-12175: [C++] Fix CMake packages

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on PR #13892:
URL: https://github.com/apache/arrow/pull/13892#issuecomment-1216293987

   :warning: Ticket **has not been started in JIRA**, please click 'Start Progress'.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] raulcd commented on a diff in pull request #13892: ARROW-12175: [C++] Fix CMake packages

Posted by GitBox <gi...@apache.org>.
raulcd commented on code in PR #13892:
URL: https://github.com/apache/arrow/pull/13892#discussion_r963799511


##########
cpp/cmake_modules/FindArrow.cmake:
##########
@@ -1,466 +0,0 @@
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-#   http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-# KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-
-# - Find Arrow (arrow/api.h, libarrow.a, libarrow.so)
-# This module defines
-#  ARROW_FOUND, whether Arrow has been found
-#  ARROW_FULL_SO_VERSION, full shared object version of found Arrow "100.0.0"
-#  ARROW_IMPORT_LIB, path to libarrow's import library (Windows only)
-#  ARROW_INCLUDE_DIR, directory containing headers
-#  ARROW_LIBS, deprecated. Use ARROW_LIB_DIR instead
-#  ARROW_LIB_DIR, directory containing Arrow libraries
-#  ARROW_SHARED_IMP_LIB, deprecated. Use ARROW_IMPORT_LIB instead
-#  ARROW_SHARED_LIB, path to libarrow's shared library
-#  ARROW_SO_VERSION, shared object version of found Arrow such as "100"
-#  ARROW_STATIC_LIB, path to libarrow.a
-#  ARROW_VERSION, version of found Arrow
-#  ARROW_VERSION_MAJOR, major version of found Arrow
-#  ARROW_VERSION_MINOR, minor version of found Arrow
-#  ARROW_VERSION_PATCH, patch version of found Arrow
-
-if(DEFINED ARROW_FOUND)
-  return()
-endif()
-
-find_package(PkgConfig)
-include(FindPackageHandleStandardArgs)
-
-if(WIN32 AND NOT MINGW)
-  # This is used to handle builds using e.g. clang in an MSVC setting.
-  set(MSVC_TOOLCHAIN TRUE)
-else()
-  set(MSVC_TOOLCHAIN FALSE)
-endif()
-
-set(ARROW_SEARCH_LIB_PATH_SUFFIXES)
-if(CMAKE_LIBRARY_ARCHITECTURE)
-  list(APPEND ARROW_SEARCH_LIB_PATH_SUFFIXES "lib/${CMAKE_LIBRARY_ARCHITECTURE}")
-endif()
-list(APPEND
-     ARROW_SEARCH_LIB_PATH_SUFFIXES
-     "lib64"
-     "lib32"
-     "lib"
-     "bin")
-set(ARROW_CONFIG_SUFFIXES
-    "_RELEASE"
-    "_RELWITHDEBINFO"
-    "_MINSIZEREL"
-    "_DEBUG"
-    "")
-if(CMAKE_BUILD_TYPE)
-  string(TOUPPER ${CMAKE_BUILD_TYPE} ARROW_CONFIG_SUFFIX_PREFERRED)
-  set(ARROW_CONFIG_SUFFIX_PREFERRED "_${ARROW_CONFIG_SUFFIX_PREFERRED}")
-  list(INSERT ARROW_CONFIG_SUFFIXES 0 "${ARROW_CONFIG_SUFFIX_PREFERRED}")
-endif()
-
-if(NOT DEFINED ARROW_MSVC_STATIC_LIB_SUFFIX)
-  if(MSVC_TOOLCHAIN)
-    set(ARROW_MSVC_STATIC_LIB_SUFFIX "_static")
-  else()
-    set(ARROW_MSVC_STATIC_LIB_SUFFIX "")
-  endif()
-endif()
-
-# Internal function.
-#
-# Set shared library name for ${base_name} to ${output_variable}.
-#
-# Example:
-#   arrow_build_shared_library_name(ARROW_SHARED_LIBRARY_NAME arrow)
-#   # -> ARROW_SHARED_LIBRARY_NAME=libarrow.so on Linux
-#   # -> ARROW_SHARED_LIBRARY_NAME=libarrow.dylib on macOS
-#   # -> ARROW_SHARED_LIBRARY_NAME=arrow.dll with MSVC on Windows
-#   # -> ARROW_SHARED_LIBRARY_NAME=libarrow.dll with MinGW on Windows
-function(arrow_build_shared_library_name output_variable base_name)
-  set(${output_variable}
-      "${CMAKE_SHARED_LIBRARY_PREFIX}${base_name}${CMAKE_SHARED_LIBRARY_SUFFIX}"
-      PARENT_SCOPE)
-endfunction()
-
-# Internal function.
-#
-# Set import library name for ${base_name} to ${output_variable}.
-# This is useful only for MSVC build. Import library is used only
-# with MSVC build.
-#
-# Example:
-#   arrow_build_import_library_name(ARROW_IMPORT_LIBRARY_NAME arrow)
-#   # -> ARROW_IMPORT_LIBRARY_NAME=arrow on Linux (meaningless)
-#   # -> ARROW_IMPORT_LIBRARY_NAME=arrow on macOS (meaningless)
-#   # -> ARROW_IMPORT_LIBRARY_NAME=arrow.lib with MSVC on Windows
-#   # -> ARROW_IMPORT_LIBRARY_NAME=libarrow.dll.a with MinGW on Windows
-function(arrow_build_import_library_name output_variable base_name)
-  set(${output_variable}
-      "${CMAKE_IMPORT_LIBRARY_PREFIX}${base_name}${CMAKE_IMPORT_LIBRARY_SUFFIX}"
-      PARENT_SCOPE)
-endfunction()
-
-# Internal function.
-#
-# Set static library name for ${base_name} to ${output_variable}.
-#
-# Example:
-#   arrow_build_static_library_name(ARROW_STATIC_LIBRARY_NAME arrow)
-#   # -> ARROW_STATIC_LIBRARY_NAME=libarrow.a on Linux
-#   # -> ARROW_STATIC_LIBRARY_NAME=libarrow.a on macOS
-#   # -> ARROW_STATIC_LIBRARY_NAME=arrow.lib with MSVC on Windows
-#   # -> ARROW_STATIC_LIBRARY_NAME=libarrow.dll.a with MinGW on Windows
-function(arrow_build_static_library_name output_variable base_name)
-  set(${output_variable}
-      "${CMAKE_STATIC_LIBRARY_PREFIX}${base_name}${ARROW_MSVC_STATIC_LIB_SUFFIX}${CMAKE_STATIC_LIBRARY_SUFFIX}"
-      PARENT_SCOPE)
-endfunction()
-
-# Internal function.
-#
-# Set macro value for ${macro_name} in ${header_content} to ${output_variable}.
-#
-# Example:
-#   arrow_extract_macro_value(version_major
-#                             "ARROW_VERSION_MAJOR"
-#                             "#define ARROW_VERSION_MAJOR 1.0.0")
-#   # -> version_major=1.0.0
-function(arrow_extract_macro_value output_variable macro_name header_content)
-  string(REGEX MATCH "#define +${macro_name} +[^\r\n]+" macro_definition
-               "${header_content}")
-  string(REGEX REPLACE "^#define +${macro_name} +(.+)$" "\\1" macro_value
-                       "${macro_definition}")
-  set(${output_variable}
-      "${macro_value}"
-      PARENT_SCOPE)
-endfunction()
-
-# Internal macro only for arrow_find_package.
-#
-# Find package in HOME.
-macro(arrow_find_package_home)
-  find_path(${prefix}_include_dir "${header_path}"
-            PATHS "${home}"
-            PATH_SUFFIXES "include"
-            NO_DEFAULT_PATH)
-  set(include_dir "${${prefix}_include_dir}")
-  set(${prefix}_INCLUDE_DIR
-      "${include_dir}"
-      PARENT_SCOPE)
-
-  if(MSVC_TOOLCHAIN)
-    set(CMAKE_SHARED_LIBRARY_SUFFIXES_ORIGINAL ${CMAKE_FIND_LIBRARY_SUFFIXES})
-    # .dll isn't found by find_library with MSVC because .dll isn't included in
-    # CMAKE_FIND_LIBRARY_SUFFIXES.
-    list(APPEND CMAKE_FIND_LIBRARY_SUFFIXES "${CMAKE_SHARED_LIBRARY_SUFFIX}")
-  endif()
-  find_library(${prefix}_shared_lib
-               NAMES "${shared_lib_name}"
-               PATHS "${home}"
-               PATH_SUFFIXES ${ARROW_SEARCH_LIB_PATH_SUFFIXES}
-               NO_DEFAULT_PATH)
-  if(MSVC_TOOLCHAIN)
-    set(CMAKE_SHARED_LIBRARY_SUFFIXES ${CMAKE_FIND_LIBRARY_SUFFIXES_ORIGINAL})
-  endif()
-  set(shared_lib "${${prefix}_shared_lib}")
-  set(${prefix}_SHARED_LIB
-      "${shared_lib}"
-      PARENT_SCOPE)
-  if(shared_lib)
-    add_library(${target_shared} SHARED IMPORTED)
-    set_target_properties(${target_shared} PROPERTIES IMPORTED_LOCATION "${shared_lib}")
-    if(include_dir)
-      set_target_properties(${target_shared} PROPERTIES INTERFACE_INCLUDE_DIRECTORIES
-                                                        "${include_dir}")
-    endif()
-    find_library(${prefix}_import_lib
-                 NAMES "${import_lib_name}"
-                 PATHS "${home}"
-                 PATH_SUFFIXES ${ARROW_SEARCH_LIB_PATH_SUFFIXES}
-                 NO_DEFAULT_PATH)
-    set(import_lib "${${prefix}_import_lib}")
-    set(${prefix}_IMPORT_LIB
-        "${import_lib}"
-        PARENT_SCOPE)
-    if(import_lib)
-      set_target_properties(${target_shared} PROPERTIES IMPORTED_IMPLIB "${import_lib}")
-    endif()
-  endif()
-
-  find_library(${prefix}_static_lib
-               NAMES "${static_lib_name}"
-               PATHS "${home}"
-               PATH_SUFFIXES ${ARROW_SEARCH_LIB_PATH_SUFFIXES}
-               NO_DEFAULT_PATH)
-  set(static_lib "${${prefix}_static_lib}")
-  set(${prefix}_STATIC_LIB
-      "${static_lib}"
-      PARENT_SCOPE)
-  if(static_lib)
-    add_library(${target_static} STATIC IMPORTED)
-    set_target_properties(${target_static} PROPERTIES IMPORTED_LOCATION "${static_lib}")
-    if(include_dir)
-      set_target_properties(${target_static} PROPERTIES INTERFACE_INCLUDE_DIRECTORIES
-                                                        "${include_dir}")
-    endif()
-  endif()
-endmacro()
-
-# Internal macro only for arrow_find_package.
-#
-# Find package by CMake package configuration.
-macro(arrow_find_package_cmake_package_configuration)
-  find_package(${cmake_package_name} CONFIG)
-  if(${cmake_package_name}_FOUND)
-    set(${prefix}_USE_CMAKE_PACKAGE_CONFIG
-        TRUE
-        PARENT_SCOPE)
-    if(TARGET ${target_shared})
-      foreach(suffix ${ARROW_CONFIG_SUFFIXES})
-        get_target_property(shared_lib ${target_shared} IMPORTED_LOCATION${suffix})
-        if(shared_lib)
-          # Remove shared library version:
-          #   libarrow.so.100.0.0 -> libarrow.so
-          # Because ARROW_HOME and pkg-config approaches don't add
-          # shared library version.
-          string(REGEX REPLACE "(${CMAKE_SHARED_LIBRARY_SUFFIX})[.0-9]+$" "\\1"
-                               shared_lib "${shared_lib}")
-          set(${prefix}_SHARED_LIB
-              "${shared_lib}"
-              PARENT_SCOPE)
-          break()
-        endif()
-      endforeach()
-    endif()
-    if(TARGET ${target_static})
-      foreach(suffix ${ARROW_CONFIG_SUFFIXES})
-        get_target_property(static_lib ${target_static} IMPORTED_LOCATION${suffix})
-        if(static_lib)
-          set(${prefix}_STATIC_LIB
-              "${static_lib}"
-              PARENT_SCOPE)
-          break()
-        endif()
-      endforeach()
-    endif()
-  endif()
-endmacro()
-
-# Internal macro only for arrow_find_package.
-#
-# Find package by pkg-config.
-macro(arrow_find_package_pkg_config)
-  pkg_check_modules(${prefix}_PC ${pkg_config_name})
-  if(${prefix}_PC_FOUND)
-    set(${prefix}_USE_PKG_CONFIG
-        TRUE
-        PARENT_SCOPE)
-
-    set(include_dir "${${prefix}_PC_INCLUDEDIR}")
-    set(lib_dir "${${prefix}_PC_LIBDIR}")
-    set(shared_lib_paths "${${prefix}_PC_LINK_LIBRARIES}")
-    # Use the first shared library path as the IMPORTED_LOCATION
-    # for ${target_shared}. This assumes that the first shared library
-    # path is the shared library path for this module.
-    list(GET shared_lib_paths 0 first_shared_lib_path)
-    # Use the rest shared library paths as the INTERFACE_LINK_LIBRARIES
-    # for ${target_shared}. This assumes that the rest shared library
-    # paths are dependency library paths for this module.
-    list(LENGTH shared_lib_paths n_shared_lib_paths)
-    if(n_shared_lib_paths LESS_EQUAL 1)
-      set(rest_shared_lib_paths)
-    else()
-      list(SUBLIST
-           shared_lib_paths
-           1
-           -1
-           rest_shared_lib_paths)
-    endif()
-
-    set(${prefix}_VERSION
-        "${${prefix}_PC_VERSION}"
-        PARENT_SCOPE)
-    set(${prefix}_INCLUDE_DIR
-        "${include_dir}"
-        PARENT_SCOPE)
-    set(${prefix}_SHARED_LIB
-        "${first_shared_lib_path}"
-        PARENT_SCOPE)
-
-    add_library(${target_shared} SHARED IMPORTED)
-    set_target_properties(${target_shared}
-                          PROPERTIES INTERFACE_INCLUDE_DIRECTORIES "${include_dir}"
-                                     INTERFACE_LINK_LIBRARIES "${rest_shared_lib_paths}"
-                                     IMPORTED_LOCATION "${first_shared_lib_path}")
-    get_target_property(shared_lib ${target_shared} IMPORTED_LOCATION)
-
-    find_library(${prefix}_static_lib
-                 NAMES "${static_lib_name}"
-                 PATHS "${lib_dir}"
-                 NO_DEFAULT_PATH)
-    set(static_lib "${${prefix}_static_lib}")
-    set(${prefix}_STATIC_LIB
-        "${static_lib}"
-        PARENT_SCOPE)
-    if(static_lib)
-      add_library(${target_static} STATIC IMPORTED)
-      set_target_properties(${target_static}
-                            PROPERTIES INTERFACE_INCLUDE_DIRECTORIES "${include_dir}"
-                                       IMPORTED_LOCATION "${static_lib}")
-    endif()
-  endif()
-endmacro()
-
-function(arrow_find_package
-         prefix
-         home
-         base_name
-         header_path
-         cmake_package_name
-         pkg_config_name)
-  arrow_build_shared_library_name(shared_lib_name ${base_name})
-  arrow_build_import_library_name(import_lib_name ${base_name})
-  arrow_build_static_library_name(static_lib_name ${base_name})
-
-  set(target_shared ${base_name}_shared)
-  set(target_static ${base_name}_static)
-
-  if(home)
-    arrow_find_package_home()
-    set(${prefix}_FIND_APPROACH
-        "HOME: ${home}"
-        PARENT_SCOPE)
-  else()
-    arrow_find_package_cmake_package_configuration()
-    if(${cmake_package_name}_FOUND)
-      set(${prefix}_FIND_APPROACH
-          "CMake package configuration: ${cmake_package_name}"
-          PARENT_SCOPE)
-    else()
-      arrow_find_package_pkg_config()
-      set(${prefix}_FIND_APPROACH
-          "pkg-config: ${pkg_config_name}"
-          PARENT_SCOPE)
-    endif()
-  endif()
-
-  if(NOT include_dir)
-    if(TARGET ${target_shared})
-      get_target_property(include_dir ${target_shared} INTERFACE_INCLUDE_DIRECTORIES)
-    elseif(TARGET ${target_static})
-      get_target_property(include_dir ${target_static} INTERFACE_INCLUDE_DIRECTORIES)
-    endif()
-  endif()
-  if(include_dir)
-    set(${prefix}_INCLUDE_DIR
-        "${include_dir}"
-        PARENT_SCOPE)
-  endif()
-
-  if(shared_lib)
-    get_filename_component(lib_dir "${shared_lib}" DIRECTORY)
-  elseif(static_lib)
-    get_filename_component(lib_dir "${static_lib}" DIRECTORY)
-  else()
-    set(lib_dir NOTFOUND)
-  endif()
-  set(${prefix}_LIB_DIR
-      "${lib_dir}"
-      PARENT_SCOPE)
-  # For backward compatibility
-  set(${prefix}_LIBS
-      "${lib_dir}"
-      PARENT_SCOPE)
-endfunction()
-
-if(NOT "$ENV{ARROW_HOME}" STREQUAL "")
-  file(TO_CMAKE_PATH "$ENV{ARROW_HOME}" ARROW_HOME)
-endif()
-arrow_find_package(ARROW
-                   "${ARROW_HOME}"
-                   arrow
-                   arrow/api.h
-                   Arrow
-                   arrow)
-
-if(ARROW_HOME)
-  if(ARROW_INCLUDE_DIR)
-    file(READ "${ARROW_INCLUDE_DIR}/arrow/util/config.h" ARROW_CONFIG_H_CONTENT)
-    arrow_extract_macro_value(ARROW_VERSION_MAJOR "ARROW_VERSION_MAJOR"
-                              "${ARROW_CONFIG_H_CONTENT}")
-    arrow_extract_macro_value(ARROW_VERSION_MINOR "ARROW_VERSION_MINOR"
-                              "${ARROW_CONFIG_H_CONTENT}")
-    arrow_extract_macro_value(ARROW_VERSION_PATCH "ARROW_VERSION_PATCH"
-                              "${ARROW_CONFIG_H_CONTENT}")
-    if("${ARROW_VERSION_MAJOR}" STREQUAL ""
-       OR "${ARROW_VERSION_MINOR}" STREQUAL ""
-       OR "${ARROW_VERSION_PATCH}" STREQUAL "")
-      set(ARROW_VERSION "0.0.0")
-    else()
-      set(ARROW_VERSION
-          "${ARROW_VERSION_MAJOR}.${ARROW_VERSION_MINOR}.${ARROW_VERSION_PATCH}")
-    endif()
-
-    arrow_extract_macro_value(ARROW_SO_VERSION_QUOTED "ARROW_SO_VERSION"
-                              "${ARROW_CONFIG_H_CONTENT}")
-    string(REGEX REPLACE "^\"(.+)\"$" "\\1" ARROW_SO_VERSION "${ARROW_SO_VERSION_QUOTED}")
-    arrow_extract_macro_value(ARROW_FULL_SO_VERSION_QUOTED "ARROW_FULL_SO_VERSION"
-                              "${ARROW_CONFIG_H_CONTENT}")
-    string(REGEX REPLACE "^\"(.+)\"$" "\\1" ARROW_FULL_SO_VERSION
-                         "${ARROW_FULL_SO_VERSION_QUOTED}")
-  endif()
-else()
-  if(ARROW_USE_CMAKE_PACKAGE_CONFIG)
-    find_package(Arrow CONFIG)
-  elseif(ARROW_USE_PKG_CONFIG)
-    pkg_get_variable(ARROW_SO_VERSION arrow so_version)
-    pkg_get_variable(ARROW_FULL_SO_VERSION arrow full_so_version)
-  endif()
-endif()
-
-set(ARROW_ABI_VERSION ${ARROW_SO_VERSION})
-
-mark_as_advanced(ARROW_ABI_VERSION
-                 ARROW_CONFIG_SUFFIXES
-                 ARROW_FULL_SO_VERSION
-                 ARROW_IMPORT_LIB
-                 ARROW_INCLUDE_DIR
-                 ARROW_LIBS
-                 ARROW_LIB_DIR
-                 ARROW_SEARCH_LIB_PATH_SUFFIXES
-                 ARROW_SHARED_IMP_LIB
-                 ARROW_SHARED_LIB
-                 ARROW_SO_VERSION
-                 ARROW_STATIC_LIB
-                 ARROW_VERSION
-                 ARROW_VERSION_MAJOR
-                 ARROW_VERSION_MINOR
-                 ARROW_VERSION_PATCH)
-
-find_package_handle_standard_args(
-  Arrow
-  REQUIRED_VARS # The first required variable is shown
-                # in the found message. So this list is
-                # not sorted alphabetically.
-                ARROW_INCLUDE_DIR ARROW_LIB_DIR ARROW_FULL_SO_VERSION ARROW_SO_VERSION
-  VERSION_VAR ARROW_VERSION)
-set(ARROW_FOUND ${Arrow_FOUND})
-
-if(Arrow_FOUND AND NOT Arrow_FIND_QUIETLY)
-  message(STATUS "Arrow version: ${ARROW_VERSION} (${ARROW_FIND_APPROACH})")
-  message(STATUS "Arrow SO and ABI version: ${ARROW_SO_VERSION}")
-  message(STATUS "Arrow full SO version: ${ARROW_FULL_SO_VERSION}")
-  message(STATUS "Found the Arrow core shared library: ${ARROW_SHARED_LIB}")
-  message(STATUS "Found the Arrow core import library: ${ARROW_IMPORT_LIB}")
-  message(STATUS "Found the Arrow core static library: ${ARROW_STATIC_LIB}")

Review Comment:
   I've created https://issues.apache.org/jira/browse/ARROW-17632 to follow this up, feel free to update the ticket if I missed anything



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] kou commented on a diff in pull request #13892: ARROW-12175: [C++] Fix CMake packages

Posted by GitBox <gi...@apache.org>.
kou commented on code in PR #13892:
URL: https://github.com/apache/arrow/pull/13892#discussion_r963671250


##########
python/pyarrow/src/CMakeLists.txt:
##########
@@ -59,7 +61,6 @@ endif()
 #
 
 find_package(Arrow REQUIRED)
-include(ArrowOptions)

Review Comment:
   Right.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] kou commented on pull request #13892: ARROW-12175: [C++] Fix CMake packages

Posted by GitBox <gi...@apache.org>.
kou commented on PR #13892:
URL: https://github.com/apache/arrow/pull/13892#issuecomment-1229375795

   This is ready to ready/merge.
   But this may be difficult to review because there are many changes. Sorry...
   
   I'll merge this a few days later if there is no objection.
   (I may defer most problems pointed out to follow-up tasks because this pull request is too large to review multiple times.)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] kou commented on pull request #13892: ARROW-12175: [C++] Fix CMake packages

Posted by GitBox <gi...@apache.org>.
kou commented on PR #13892:
URL: https://github.com/apache/arrow/pull/13892#issuecomment-1228645680

   @github-actions crossbow submit conda-linux-gcc-py310-cpu


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] kou commented on pull request #13892: ARROW-12175: [C++] Fix CMake packages

Posted by GitBox <gi...@apache.org>.
kou commented on PR #13892:
URL: https://github.com/apache/arrow/pull/13892#issuecomment-1229081228

   @github-actions crossbow submit conda-linux-gcc-py310-cpu


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] kou commented on pull request #13892: ARROW-12175: [C++] Fix CMake packages

Posted by GitBox <gi...@apache.org>.
kou commented on PR #13892:
URL: https://github.com/apache/arrow/pull/13892#issuecomment-1225205251

   @github-actions crossbow submit -g nightly-tests -g nightly-packaging -g nightly-release


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] github-actions[bot] commented on pull request #13892: ARROW-12175: [C++] Fix CMake packages

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on PR #13892:
URL: https://github.com/apache/arrow/pull/13892#issuecomment-1225217709

   Revision: 119c8e142f8f0a18bb359eea23c3f731c8c84d11
   
   Submitted crossbow builds: [ursacomputing/crossbow @ actions-1eec7bcaa0](https://github.com/ursacomputing/crossbow/branches/all?query=actions-1eec7bcaa0)
   
   |Task|Status|
   |----|------|
   |almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-almalinux-8-amd64)|
   |almalinux-8-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-1eec7bcaa0-travis-almalinux-8-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |almalinux-9-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-almalinux-9-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-almalinux-9-amd64)|
   |almalinux-9-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-1eec7bcaa0-travis-almalinux-9-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |amazon-linux-2-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-amazon-linux-2-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-amazon-linux-2-amd64)|
   |amazon-linux-2-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-1eec7bcaa0-travis-amazon-linux-2-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |centos-7-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-centos-7-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-centos-7-amd64)|
   |centos-8-stream-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-centos-8-stream-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-centos-8-stream-amd64)|
   |centos-8-stream-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-1eec7bcaa0-travis-centos-8-stream-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |centos-9-stream-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-centos-9-stream-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-centos-9-stream-amd64)|
   |centos-9-stream-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-1eec7bcaa0-travis-centos-9-stream-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |conan-maximum|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-conan-maximum)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-conan-maximum)|
   |conan-minimum|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-conan-minimum)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-conan-minimum)|
   |conda-clean|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-1eec7bcaa0-azure-conda-clean)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-1eec7bcaa0-azure-conda-clean)|
   |conda-linux-gcc-py310-arm64|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-1eec7bcaa0-azure-conda-linux-gcc-py310-arm64)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-1eec7bcaa0-azure-conda-linux-gcc-py310-arm64)|
   |conda-linux-gcc-py310-cpu|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-1eec7bcaa0-azure-conda-linux-gcc-py310-cpu)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-1eec7bcaa0-azure-conda-linux-gcc-py310-cpu)|
   |conda-linux-gcc-py310-cuda|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-1eec7bcaa0-azure-conda-linux-gcc-py310-cuda)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-1eec7bcaa0-azure-conda-linux-gcc-py310-cuda)|
   |conda-linux-gcc-py310-ppc64le|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-1eec7bcaa0-azure-conda-linux-gcc-py310-ppc64le)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-1eec7bcaa0-azure-conda-linux-gcc-py310-ppc64le)|
   |conda-linux-gcc-py37-arm64|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-1eec7bcaa0-azure-conda-linux-gcc-py37-arm64)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-1eec7bcaa0-azure-conda-linux-gcc-py37-arm64)|
   |conda-linux-gcc-py37-cpu-r40|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-1eec7bcaa0-azure-conda-linux-gcc-py37-cpu-r40)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-1eec7bcaa0-azure-conda-linux-gcc-py37-cpu-r40)|
   |conda-linux-gcc-py37-cpu-r41|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-1eec7bcaa0-azure-conda-linux-gcc-py37-cpu-r41)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-1eec7bcaa0-azure-conda-linux-gcc-py37-cpu-r41)|
   |conda-linux-gcc-py37-cuda|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-1eec7bcaa0-azure-conda-linux-gcc-py37-cuda)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-1eec7bcaa0-azure-conda-linux-gcc-py37-cuda)|
   |conda-linux-gcc-py37-ppc64le|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-1eec7bcaa0-azure-conda-linux-gcc-py37-ppc64le)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-1eec7bcaa0-azure-conda-linux-gcc-py37-ppc64le)|
   |conda-linux-gcc-py38-arm64|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-1eec7bcaa0-azure-conda-linux-gcc-py38-arm64)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-1eec7bcaa0-azure-conda-linux-gcc-py38-arm64)|
   |conda-linux-gcc-py38-cpu|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-1eec7bcaa0-azure-conda-linux-gcc-py38-cpu)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-1eec7bcaa0-azure-conda-linux-gcc-py38-cpu)|
   |conda-linux-gcc-py38-cuda|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-1eec7bcaa0-azure-conda-linux-gcc-py38-cuda)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-1eec7bcaa0-azure-conda-linux-gcc-py38-cuda)|
   |conda-linux-gcc-py38-ppc64le|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-1eec7bcaa0-azure-conda-linux-gcc-py38-ppc64le)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-1eec7bcaa0-azure-conda-linux-gcc-py38-ppc64le)|
   |conda-linux-gcc-py39-arm64|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-1eec7bcaa0-azure-conda-linux-gcc-py39-arm64)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-1eec7bcaa0-azure-conda-linux-gcc-py39-arm64)|
   |conda-linux-gcc-py39-cpu|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-1eec7bcaa0-azure-conda-linux-gcc-py39-cpu)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-1eec7bcaa0-azure-conda-linux-gcc-py39-cpu)|
   |conda-linux-gcc-py39-cuda|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-1eec7bcaa0-azure-conda-linux-gcc-py39-cuda)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-1eec7bcaa0-azure-conda-linux-gcc-py39-cuda)|
   |conda-linux-gcc-py39-ppc64le|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-1eec7bcaa0-azure-conda-linux-gcc-py39-ppc64le)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-1eec7bcaa0-azure-conda-linux-gcc-py39-ppc64le)|
   |conda-osx-arm64-clang-py310|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-1eec7bcaa0-azure-conda-osx-arm64-clang-py310)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-1eec7bcaa0-azure-conda-osx-arm64-clang-py310)|
   |conda-osx-arm64-clang-py38|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-1eec7bcaa0-azure-conda-osx-arm64-clang-py38)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-1eec7bcaa0-azure-conda-osx-arm64-clang-py38)|
   |conda-osx-arm64-clang-py39|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-1eec7bcaa0-azure-conda-osx-arm64-clang-py39)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-1eec7bcaa0-azure-conda-osx-arm64-clang-py39)|
   |conda-osx-clang-py310|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-1eec7bcaa0-azure-conda-osx-clang-py310)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-1eec7bcaa0-azure-conda-osx-clang-py310)|
   |conda-osx-clang-py37-r40|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-1eec7bcaa0-azure-conda-osx-clang-py37-r40)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-1eec7bcaa0-azure-conda-osx-clang-py37-r40)|
   |conda-osx-clang-py37-r41|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-1eec7bcaa0-azure-conda-osx-clang-py37-r41)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-1eec7bcaa0-azure-conda-osx-clang-py37-r41)|
   |conda-osx-clang-py38|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-1eec7bcaa0-azure-conda-osx-clang-py38)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-1eec7bcaa0-azure-conda-osx-clang-py38)|
   |conda-osx-clang-py39|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-1eec7bcaa0-azure-conda-osx-clang-py39)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-1eec7bcaa0-azure-conda-osx-clang-py39)|
   |conda-win-vs2017-py310|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-1eec7bcaa0-azure-conda-win-vs2017-py310)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-1eec7bcaa0-azure-conda-win-vs2017-py310)|
   |conda-win-vs2017-py37-r40|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-1eec7bcaa0-azure-conda-win-vs2017-py37-r40)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-1eec7bcaa0-azure-conda-win-vs2017-py37-r40)|
   |conda-win-vs2017-py37-r41|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-1eec7bcaa0-azure-conda-win-vs2017-py37-r41)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-1eec7bcaa0-azure-conda-win-vs2017-py37-r41)|
   |conda-win-vs2017-py38|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-1eec7bcaa0-azure-conda-win-vs2017-py38)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-1eec7bcaa0-azure-conda-win-vs2017-py38)|
   |conda-win-vs2017-py39|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-1eec7bcaa0-azure-conda-win-vs2017-py39)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-1eec7bcaa0-azure-conda-win-vs2017-py39)|
   |debian-bookworm-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-debian-bookworm-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-debian-bookworm-amd64)|
   |debian-bookworm-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-1eec7bcaa0-travis-debian-bookworm-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |debian-bullseye-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-debian-bullseye-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-debian-bullseye-amd64)|
   |debian-bullseye-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-1eec7bcaa0-travis-debian-bullseye-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |example-cpp-minimal-build-static|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-example-cpp-minimal-build-static)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-example-cpp-minimal-build-static)|
   |example-cpp-minimal-build-static-system-dependency|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-example-cpp-minimal-build-static-system-dependency)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-example-cpp-minimal-build-static-system-dependency)|
   |example-python-minimal-build-fedora-conda|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-example-python-minimal-build-fedora-conda)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-example-python-minimal-build-fedora-conda)|
   |example-python-minimal-build-ubuntu-venv|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-example-python-minimal-build-ubuntu-venv)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-example-python-minimal-build-ubuntu-venv)|
   |homebrew-cpp|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-homebrew-cpp)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-homebrew-cpp)|
   |homebrew-r-autobrew|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-homebrew-r-autobrew)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-homebrew-r-autobrew)|
   |homebrew-r-brew|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-homebrew-r-brew)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-homebrew-r-brew)|
   |java-jars|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-java-jars)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-java-jars)|
   |nuget|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-nuget)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-nuget)|
   |python-sdist|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-python-sdist)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-python-sdist)|
   |r-binary-packages|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-r-binary-packages)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-r-binary-packages)|
   |test-alpine-linux-cpp|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-test-alpine-linux-cpp)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-test-alpine-linux-cpp)|
   |test-build-cpp-fuzz|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-test-build-cpp-fuzz)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-test-build-cpp-fuzz)|
   |test-build-vcpkg-win|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-test-build-vcpkg-win)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-test-build-vcpkg-win)|
   |test-conda-cpp|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-test-conda-cpp)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-test-conda-cpp)|
   |test-conda-cpp-valgrind|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-1eec7bcaa0-azure-test-conda-cpp-valgrind)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-1eec7bcaa0-azure-test-conda-cpp-valgrind)|
   |test-conda-python-3.10|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-test-conda-python-3.10)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-test-conda-python-3.10)|
   |test-conda-python-3.7|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-test-conda-python-3.7)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-test-conda-python-3.7)|
   |test-conda-python-3.7-hdfs-2.9.2|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-test-conda-python-3.7-hdfs-2.9.2)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-test-conda-python-3.7-hdfs-2.9.2)|
   |test-conda-python-3.7-hdfs-3.2.1|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-test-conda-python-3.7-hdfs-3.2.1)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-test-conda-python-3.7-hdfs-3.2.1)|
   |test-conda-python-3.7-kartothek-latest|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-test-conda-python-3.7-kartothek-latest)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-test-conda-python-3.7-kartothek-latest)|
   |test-conda-python-3.7-kartothek-master|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-test-conda-python-3.7-kartothek-master)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-test-conda-python-3.7-kartothek-master)|
   |test-conda-python-3.7-pandas-0.24|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-test-conda-python-3.7-pandas-0.24)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-test-conda-python-3.7-pandas-0.24)|
   |test-conda-python-3.7-pandas-latest|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-test-conda-python-3.7-pandas-latest)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-test-conda-python-3.7-pandas-latest)|
   |test-conda-python-3.7-spark-v3.1.2|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-test-conda-python-3.7-spark-v3.1.2)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-test-conda-python-3.7-spark-v3.1.2)|
   |test-conda-python-3.8|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-test-conda-python-3.8)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-test-conda-python-3.8)|
   |test-conda-python-3.8-hypothesis|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-test-conda-python-3.8-hypothesis)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-test-conda-python-3.8-hypothesis)|
   |test-conda-python-3.8-pandas-latest|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-test-conda-python-3.8-pandas-latest)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-test-conda-python-3.8-pandas-latest)|
   |test-conda-python-3.8-pandas-nightly|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-test-conda-python-3.8-pandas-nightly)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-test-conda-python-3.8-pandas-nightly)|
   |test-conda-python-3.8-spark-v3.2.0|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-test-conda-python-3.8-spark-v3.2.0)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-test-conda-python-3.8-spark-v3.2.0)|
   |test-conda-python-3.9|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-test-conda-python-3.9)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-test-conda-python-3.9)|
   |test-conda-python-3.9-dask-latest|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-test-conda-python-3.9-dask-latest)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-test-conda-python-3.9-dask-latest)|
   |test-conda-python-3.9-dask-master|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-test-conda-python-3.9-dask-master)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-test-conda-python-3.9-dask-master)|
   |test-conda-python-3.9-pandas-master|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-test-conda-python-3.9-pandas-master)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-test-conda-python-3.9-pandas-master)|
   |test-conda-python-3.9-spark-master|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-test-conda-python-3.9-spark-master)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-test-conda-python-3.9-spark-master)|
   |test-debian-10-cpp-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-test-debian-10-cpp-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-test-debian-10-cpp-amd64)|
   |test-debian-10-cpp-i386|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-test-debian-10-cpp-i386)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-test-debian-10-cpp-i386)|
   |test-debian-11-cpp-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-test-debian-11-cpp-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-test-debian-11-cpp-amd64)|
   |test-debian-11-cpp-i386|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-test-debian-11-cpp-i386)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-test-debian-11-cpp-i386)|
   |test-debian-11-go-1.16|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-1eec7bcaa0-azure-test-debian-11-go-1.16)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-1eec7bcaa0-azure-test-debian-11-go-1.16)|
   |test-debian-11-python-3|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-1eec7bcaa0-azure-test-debian-11-python-3)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-1eec7bcaa0-azure-test-debian-11-python-3)|
   |test-debian-c-glib|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-test-debian-c-glib)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-test-debian-c-glib)|
   |test-debian-ruby|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-test-debian-ruby)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-test-debian-ruby)|
   |test-fedora-35-cpp|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-test-fedora-35-cpp)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-test-fedora-35-cpp)|
   |test-fedora-35-python-3|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-1eec7bcaa0-azure-test-fedora-35-python-3)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-1eec7bcaa0-azure-test-fedora-35-python-3)|
   |test-fedora-r-clang-sanitizer|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-1eec7bcaa0-azure-test-fedora-r-clang-sanitizer)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-1eec7bcaa0-azure-test-fedora-r-clang-sanitizer)|
   |test-r-arrow-backwards-compatibility|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-test-r-arrow-backwards-compatibility)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-test-r-arrow-backwards-compatibility)|
   |test-r-depsource-bundled|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-1eec7bcaa0-azure-test-r-depsource-bundled)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-1eec7bcaa0-azure-test-r-depsource-bundled)|
   |test-r-depsource-system|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-test-r-depsource-system)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-test-r-depsource-system)|
   |test-r-dev-duckdb|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-test-r-dev-duckdb)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-test-r-dev-duckdb)|
   |test-r-devdocs|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-test-r-devdocs)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-test-r-devdocs)|
   |test-r-gcc-11|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-test-r-gcc-11)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-test-r-gcc-11)|
   |test-r-gcc-12|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-test-r-gcc-12)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-test-r-gcc-12)|
   |test-r-install-local|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-test-r-install-local)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-test-r-install-local)|
   |test-r-linux-as-cran|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-test-r-linux-as-cran)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-test-r-linux-as-cran)|
   |test-r-linux-rchk|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-test-r-linux-rchk)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-test-r-linux-rchk)|
   |test-r-linux-valgrind|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-1eec7bcaa0-azure-test-r-linux-valgrind)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-1eec7bcaa0-azure-test-r-linux-valgrind)|
   |test-r-minimal-build|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-1eec7bcaa0-azure-test-r-minimal-build)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-1eec7bcaa0-azure-test-r-minimal-build)|
   |test-r-offline-maximal|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-test-r-offline-maximal)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-test-r-offline-maximal)|
   |test-r-offline-minimal|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-1eec7bcaa0-azure-test-r-offline-minimal)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-1eec7bcaa0-azure-test-r-offline-minimal)|
   |test-r-rhub-debian-gcc-devel-lto-latest|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-1eec7bcaa0-azure-test-r-rhub-debian-gcc-devel-lto-latest)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-1eec7bcaa0-azure-test-r-rhub-debian-gcc-devel-lto-latest)|
   |test-r-rhub-debian-gcc-release-custom-ccache|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-1eec7bcaa0-azure-test-r-rhub-debian-gcc-release-custom-ccache)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-1eec7bcaa0-azure-test-r-rhub-debian-gcc-release-custom-ccache)|
   |test-r-rhub-ubuntu-gcc-release-latest|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-1eec7bcaa0-azure-test-r-rhub-ubuntu-gcc-release-latest)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-1eec7bcaa0-azure-test-r-rhub-ubuntu-gcc-release-latest)|
   |test-r-rocker-r-base-latest|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-1eec7bcaa0-azure-test-r-rocker-r-base-latest)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-1eec7bcaa0-azure-test-r-rocker-r-base-latest)|
   |test-r-rstudio-r-base-4.1-opensuse153|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-1eec7bcaa0-azure-test-r-rstudio-r-base-4.1-opensuse153)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-1eec7bcaa0-azure-test-r-rstudio-r-base-4.1-opensuse153)|
   |test-r-rstudio-r-base-4.2-centos7-devtoolset-8|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-1eec7bcaa0-azure-test-r-rstudio-r-base-4.2-centos7-devtoolset-8)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-1eec7bcaa0-azure-test-r-rstudio-r-base-4.2-centos7-devtoolset-8)|
   |test-r-rstudio-r-base-4.2-focal|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-1eec7bcaa0-azure-test-r-rstudio-r-base-4.2-focal)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-1eec7bcaa0-azure-test-r-rstudio-r-base-4.2-focal)|
   |test-r-ubuntu-22.04|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-test-r-ubuntu-22.04)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-test-r-ubuntu-22.04)|
   |test-r-versions|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-test-r-versions)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-test-r-versions)|
   |test-skyhook-integration|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-test-skyhook-integration)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-test-skyhook-integration)|
   |test-ubuntu-18.04-cpp|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-test-ubuntu-18.04-cpp)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-test-ubuntu-18.04-cpp)|
   |test-ubuntu-18.04-cpp-release|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-test-ubuntu-18.04-cpp-release)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-test-ubuntu-18.04-cpp-release)|
   |test-ubuntu-18.04-cpp-static|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-test-ubuntu-18.04-cpp-static)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-test-ubuntu-18.04-cpp-static)|
   |test-ubuntu-18.04-r-sanitizer|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-1eec7bcaa0-azure-test-ubuntu-18.04-r-sanitizer)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-1eec7bcaa0-azure-test-ubuntu-18.04-r-sanitizer)|
   |test-ubuntu-20.04-cpp|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-test-ubuntu-20.04-cpp)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-test-ubuntu-20.04-cpp)|
   |test-ubuntu-20.04-cpp-14|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-test-ubuntu-20.04-cpp-14)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-test-ubuntu-20.04-cpp-14)|
   |test-ubuntu-20.04-cpp-17|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-test-ubuntu-20.04-cpp-17)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-test-ubuntu-20.04-cpp-17)|
   |test-ubuntu-20.04-cpp-bundled|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-test-ubuntu-20.04-cpp-bundled)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-test-ubuntu-20.04-cpp-bundled)|
   |test-ubuntu-20.04-cpp-thread-sanitizer|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-test-ubuntu-20.04-cpp-thread-sanitizer)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-test-ubuntu-20.04-cpp-thread-sanitizer)|
   |test-ubuntu-20.04-python-3|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-1eec7bcaa0-azure-test-ubuntu-20.04-python-3)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-1eec7bcaa0-azure-test-ubuntu-20.04-python-3)|
   |test-ubuntu-22.04-cpp|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-test-ubuntu-22.04-cpp)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-test-ubuntu-22.04-cpp)|
   |test-ubuntu-c-glib|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-test-ubuntu-c-glib)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-test-ubuntu-c-glib)|
   |test-ubuntu-default-docs|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-1eec7bcaa0-azure-test-ubuntu-default-docs)](https://dev.azure.com/ursacomputing/crossbow/_build/latest?definitionId=1&branchName=actions-1eec7bcaa0-azure-test-ubuntu-default-docs)|
   |test-ubuntu-ruby|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-test-ubuntu-ruby)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-test-ubuntu-ruby)|
   |ubuntu-bionic-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-ubuntu-bionic-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-ubuntu-bionic-amd64)|
   |ubuntu-bionic-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-1eec7bcaa0-travis-ubuntu-bionic-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |ubuntu-focal-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-ubuntu-focal-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-ubuntu-focal-amd64)|
   |ubuntu-focal-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-1eec7bcaa0-travis-ubuntu-focal-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |ubuntu-jammy-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-ubuntu-jammy-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-ubuntu-jammy-amd64)|
   |ubuntu-jammy-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-1eec7bcaa0-travis-ubuntu-jammy-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |verify-rc-source-cpp-linux-almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-cpp-linux-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-cpp-linux-almalinux-8-amd64)|
   |verify-rc-source-cpp-linux-conda-latest-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-cpp-linux-conda-latest-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-cpp-linux-conda-latest-amd64)|
   |verify-rc-source-cpp-linux-ubuntu-18.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-cpp-linux-ubuntu-18.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-cpp-linux-ubuntu-18.04-amd64)|
   |verify-rc-source-cpp-linux-ubuntu-20.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-cpp-linux-ubuntu-20.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-cpp-linux-ubuntu-20.04-amd64)|
   |verify-rc-source-cpp-linux-ubuntu-22.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-cpp-linux-ubuntu-22.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-cpp-linux-ubuntu-22.04-amd64)|
   |verify-rc-source-cpp-macos-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-cpp-macos-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-cpp-macos-amd64)|
   |verify-rc-source-cpp-macos-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-cpp-macos-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-cpp-macos-arm64)|
   |verify-rc-source-cpp-macos-conda-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-cpp-macos-conda-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-cpp-macos-conda-amd64)|
   |verify-rc-source-csharp-linux-almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-csharp-linux-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-csharp-linux-almalinux-8-amd64)|
   |verify-rc-source-csharp-linux-conda-latest-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-csharp-linux-conda-latest-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-csharp-linux-conda-latest-amd64)|
   |verify-rc-source-csharp-linux-ubuntu-18.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-csharp-linux-ubuntu-18.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-csharp-linux-ubuntu-18.04-amd64)|
   |verify-rc-source-csharp-linux-ubuntu-20.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-csharp-linux-ubuntu-20.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-csharp-linux-ubuntu-20.04-amd64)|
   |verify-rc-source-csharp-linux-ubuntu-22.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-csharp-linux-ubuntu-22.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-csharp-linux-ubuntu-22.04-amd64)|
   |verify-rc-source-csharp-macos-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-csharp-macos-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-csharp-macos-amd64)|
   |verify-rc-source-csharp-macos-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-csharp-macos-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-csharp-macos-arm64)|
   |verify-rc-source-go-linux-almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-go-linux-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-go-linux-almalinux-8-amd64)|
   |verify-rc-source-go-linux-conda-latest-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-go-linux-conda-latest-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-go-linux-conda-latest-amd64)|
   |verify-rc-source-go-linux-ubuntu-18.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-go-linux-ubuntu-18.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-go-linux-ubuntu-18.04-amd64)|
   |verify-rc-source-go-linux-ubuntu-20.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-go-linux-ubuntu-20.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-go-linux-ubuntu-20.04-amd64)|
   |verify-rc-source-go-linux-ubuntu-22.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-go-linux-ubuntu-22.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-go-linux-ubuntu-22.04-amd64)|
   |verify-rc-source-go-macos-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-go-macos-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-go-macos-amd64)|
   |verify-rc-source-go-macos-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-go-macos-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-go-macos-arm64)|
   |verify-rc-source-integration-linux-almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-integration-linux-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-integration-linux-almalinux-8-amd64)|
   |verify-rc-source-integration-linux-conda-latest-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-integration-linux-conda-latest-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-integration-linux-conda-latest-amd64)|
   |verify-rc-source-integration-linux-ubuntu-18.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-integration-linux-ubuntu-18.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-integration-linux-ubuntu-18.04-amd64)|
   |verify-rc-source-integration-linux-ubuntu-20.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-integration-linux-ubuntu-20.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-integration-linux-ubuntu-20.04-amd64)|
   |verify-rc-source-integration-linux-ubuntu-22.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-integration-linux-ubuntu-22.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-integration-linux-ubuntu-22.04-amd64)|
   |verify-rc-source-integration-macos-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-integration-macos-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-integration-macos-amd64)|
   |verify-rc-source-integration-macos-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-integration-macos-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-integration-macos-arm64)|
   |verify-rc-source-integration-macos-conda-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-integration-macos-conda-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-integration-macos-conda-amd64)|
   |verify-rc-source-java-linux-almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-java-linux-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-java-linux-almalinux-8-amd64)|
   |verify-rc-source-java-linux-conda-latest-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-java-linux-conda-latest-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-java-linux-conda-latest-amd64)|
   |verify-rc-source-java-linux-ubuntu-18.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-java-linux-ubuntu-18.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-java-linux-ubuntu-18.04-amd64)|
   |verify-rc-source-java-linux-ubuntu-20.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-java-linux-ubuntu-20.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-java-linux-ubuntu-20.04-amd64)|
   |verify-rc-source-java-linux-ubuntu-22.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-java-linux-ubuntu-22.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-java-linux-ubuntu-22.04-amd64)|
   |verify-rc-source-java-macos-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-java-macos-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-java-macos-amd64)|
   |verify-rc-source-js-linux-almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-js-linux-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-js-linux-almalinux-8-amd64)|
   |verify-rc-source-js-linux-conda-latest-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-js-linux-conda-latest-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-js-linux-conda-latest-amd64)|
   |verify-rc-source-js-linux-ubuntu-18.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-js-linux-ubuntu-18.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-js-linux-ubuntu-18.04-amd64)|
   |verify-rc-source-js-linux-ubuntu-20.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-js-linux-ubuntu-20.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-js-linux-ubuntu-20.04-amd64)|
   |verify-rc-source-js-linux-ubuntu-22.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-js-linux-ubuntu-22.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-js-linux-ubuntu-22.04-amd64)|
   |verify-rc-source-js-macos-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-js-macos-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-js-macos-amd64)|
   |verify-rc-source-js-macos-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-js-macos-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-js-macos-arm64)|
   |verify-rc-source-python-linux-almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-python-linux-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-python-linux-almalinux-8-amd64)|
   |verify-rc-source-python-linux-conda-latest-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-python-linux-conda-latest-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-python-linux-conda-latest-amd64)|
   |verify-rc-source-python-linux-ubuntu-18.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-python-linux-ubuntu-18.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-python-linux-ubuntu-18.04-amd64)|
   |verify-rc-source-python-linux-ubuntu-20.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-python-linux-ubuntu-20.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-python-linux-ubuntu-20.04-amd64)|
   |verify-rc-source-python-linux-ubuntu-22.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-python-linux-ubuntu-22.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-python-linux-ubuntu-22.04-amd64)|
   |verify-rc-source-python-macos-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-python-macos-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-python-macos-amd64)|
   |verify-rc-source-python-macos-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-python-macos-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-python-macos-arm64)|
   |verify-rc-source-python-macos-conda-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-python-macos-conda-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-python-macos-conda-amd64)|
   |verify-rc-source-ruby-linux-almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-ruby-linux-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-ruby-linux-almalinux-8-amd64)|
   |verify-rc-source-ruby-linux-conda-latest-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-ruby-linux-conda-latest-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-ruby-linux-conda-latest-amd64)|
   |verify-rc-source-ruby-linux-ubuntu-18.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-ruby-linux-ubuntu-18.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-ruby-linux-ubuntu-18.04-amd64)|
   |verify-rc-source-ruby-linux-ubuntu-20.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-ruby-linux-ubuntu-20.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-ruby-linux-ubuntu-20.04-amd64)|
   |verify-rc-source-ruby-linux-ubuntu-22.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-ruby-linux-ubuntu-22.04-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-ruby-linux-ubuntu-22.04-amd64)|
   |verify-rc-source-ruby-macos-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-ruby-macos-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-ruby-macos-amd64)|
   |verify-rc-source-ruby-macos-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-ruby-macos-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-ruby-macos-arm64)|
   |verify-rc-source-windows|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-verify-rc-source-windows)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-verify-rc-source-windows)|
   |wheel-macos-big-sur-cp310-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-wheel-macos-big-sur-cp310-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-wheel-macos-big-sur-cp310-arm64)|
   |wheel-macos-big-sur-cp310-universal2|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-wheel-macos-big-sur-cp310-universal2)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-wheel-macos-big-sur-cp310-universal2)|
   |wheel-macos-big-sur-cp38-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-wheel-macos-big-sur-cp38-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-wheel-macos-big-sur-cp38-arm64)|
   |wheel-macos-big-sur-cp39-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-wheel-macos-big-sur-cp39-arm64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-wheel-macos-big-sur-cp39-arm64)|
   |wheel-macos-big-sur-cp39-universal2|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-wheel-macos-big-sur-cp39-universal2)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-wheel-macos-big-sur-cp39-universal2)|
   |wheel-macos-high-sierra-cp310-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-wheel-macos-high-sierra-cp310-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-wheel-macos-high-sierra-cp310-amd64)|
   |wheel-macos-high-sierra-cp37-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-wheel-macos-high-sierra-cp37-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-wheel-macos-high-sierra-cp37-amd64)|
   |wheel-macos-high-sierra-cp38-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-wheel-macos-high-sierra-cp38-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-wheel-macos-high-sierra-cp38-amd64)|
   |wheel-macos-high-sierra-cp39-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-wheel-macos-high-sierra-cp39-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-wheel-macos-high-sierra-cp39-amd64)|
   |wheel-macos-mavericks-cp310-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-wheel-macos-mavericks-cp310-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-wheel-macos-mavericks-cp310-amd64)|
   |wheel-macos-mavericks-cp37-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-wheel-macos-mavericks-cp37-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-wheel-macos-mavericks-cp37-amd64)|
   |wheel-macos-mavericks-cp38-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-wheel-macos-mavericks-cp38-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-wheel-macos-mavericks-cp38-amd64)|
   |wheel-macos-mavericks-cp39-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-wheel-macos-mavericks-cp39-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-wheel-macos-mavericks-cp39-amd64)|
   |wheel-manylinux2014-cp310-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-wheel-manylinux2014-cp310-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-wheel-manylinux2014-cp310-amd64)|
   |wheel-manylinux2014-cp310-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-1eec7bcaa0-travis-wheel-manylinux2014-cp310-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |wheel-manylinux2014-cp37-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-wheel-manylinux2014-cp37-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-wheel-manylinux2014-cp37-amd64)|
   |wheel-manylinux2014-cp37-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-1eec7bcaa0-travis-wheel-manylinux2014-cp37-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |wheel-manylinux2014-cp38-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-wheel-manylinux2014-cp38-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-wheel-manylinux2014-cp38-amd64)|
   |wheel-manylinux2014-cp38-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-1eec7bcaa0-travis-wheel-manylinux2014-cp38-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |wheel-manylinux2014-cp39-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-wheel-manylinux2014-cp39-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-wheel-manylinux2014-cp39-amd64)|
   |wheel-manylinux2014-cp39-arm64|[![TravisCI](https://img.shields.io/travis/ursacomputing/crossbow/actions-1eec7bcaa0-travis-wheel-manylinux2014-cp39-arm64.svg)](https://app.travis-ci.com/github/ursacomputing/crossbow/branches)|
   |wheel-windows-cp310-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-wheel-windows-cp310-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-wheel-windows-cp310-amd64)|
   |wheel-windows-cp37-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-wheel-windows-cp37-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-wheel-windows-cp37-amd64)|
   |wheel-windows-cp38-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-wheel-windows-cp38-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-wheel-windows-cp38-amd64)|
   |wheel-windows-cp39-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-1eec7bcaa0-github-wheel-windows-cp39-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-1eec7bcaa0-github-wheel-windows-cp39-amd64)|


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] github-actions[bot] commented on pull request #13892: ARROW-12175: [C++] Fix CMake packages

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on PR #13892:
URL: https://github.com/apache/arrow/pull/13892#issuecomment-1225011810

   Revision: 4ef2eeb551762648d54528aa3a539e3e7d63c8ae
   
   Submitted crossbow builds: [ursacomputing/crossbow @ actions-99f1df6034](https://github.com/ursacomputing/crossbow/branches/all?query=actions-99f1df6034)
   
   |Task|Status|
   |----|------|
   |verify-rc-source-python-linux-conda-latest-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-99f1df6034-github-verify-rc-source-python-linux-conda-latest-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-99f1df6034-github-verify-rc-source-python-linux-conda-latest-amd64)|
   |wheel-windows-cp310-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/workflows/Crossbow/badge.svg?branch=actions-99f1df6034-github-wheel-windows-cp310-amd64)](https://github.com/ursacomputing/crossbow/actions?query=branch:actions-99f1df6034-github-wheel-windows-cp310-amd64)|


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] kou commented on pull request #13892: ARROW-12175: [C++] Fix CMake packages

Posted by GitBox <gi...@apache.org>.
kou commented on PR #13892:
URL: https://github.com/apache/arrow/pull/13892#issuecomment-1225010780

   @github-actions crossbow submit verify-rc-source-python-linux-conda-latest-amd64 wheel-windows-cp310-amd64


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] ursabot commented on pull request #13892: ARROW-12175: [C++] Fix CMake packages

Posted by GitBox <gi...@apache.org>.
ursabot commented on PR #13892:
URL: https://github.com/apache/arrow/pull/13892#issuecomment-1232064768

   Benchmark runs are scheduled for baseline = b43c6f6b18acee019a500bc6a05af18c07f2ca79 and contender = 93b63e8f3b4880927ccbd5522c967df79e926cda. 93b63e8f3b4880927ccbd5522c967df79e926cda is a master commit associated with this PR. Results will be available as each benchmark for each run completes.
   Conbench compare runs links:
   [Finished :arrow_down:0.0% :arrow_up:0.0%] [ec2-t3-xlarge-us-east-2](https://conbench.ursa.dev/compare/runs/6bd14dc871ee4c5185d1cfcc0b4d81f1...4c58872aa4f34701a343a7e3380165ad/)
   [Failed] [test-mac-arm](https://conbench.ursa.dev/compare/runs/b3a8a40c75fd40629fa338d7ca9b9dbc...3d0c7794828d43fe97a3173350cfa697/)
   [Failed :arrow_down:0.55% :arrow_up:0.0%] [ursa-i9-9960x](https://conbench.ursa.dev/compare/runs/716ec505baaa47ba8385862ebcbde968...742fdd2baccf405db3bc1c6a48604902/)
   [Finished :arrow_down:0.32% :arrow_up:0.0%] [ursa-thinkcentre-m75q](https://conbench.ursa.dev/compare/runs/779a5e328192492ba04c93d4371bb733...2890b3ccfcdf457e820210ceaf939955/)
   Buildkite builds:
   [Finished] [`93b63e8f` ec2-t3-xlarge-us-east-2](https://buildkite.com/apache-arrow/arrow-bci-benchmark-on-ec2-t3-xlarge-us-east-2/builds/1387)
   [Failed] [`93b63e8f` test-mac-arm](https://buildkite.com/apache-arrow/arrow-bci-benchmark-on-test-mac-arm/builds/1403)
   [Failed] [`93b63e8f` ursa-i9-9960x](https://buildkite.com/apache-arrow/arrow-bci-benchmark-on-ursa-i9-9960x/builds/1385)
   [Finished] [`93b63e8f` ursa-thinkcentre-m75q](https://buildkite.com/apache-arrow/arrow-bci-benchmark-on-ursa-thinkcentre-m75q/builds/1402)
   [Finished] [`b43c6f6b` ec2-t3-xlarge-us-east-2](https://buildkite.com/apache-arrow/arrow-bci-benchmark-on-ec2-t3-xlarge-us-east-2/builds/1386)
   [Failed] [`b43c6f6b` test-mac-arm](https://buildkite.com/apache-arrow/arrow-bci-benchmark-on-test-mac-arm/builds/1402)
   [Failed] [`b43c6f6b` ursa-i9-9960x](https://buildkite.com/apache-arrow/arrow-bci-benchmark-on-ursa-i9-9960x/builds/1384)
   [Finished] [`b43c6f6b` ursa-thinkcentre-m75q](https://buildkite.com/apache-arrow/arrow-bci-benchmark-on-ursa-thinkcentre-m75q/builds/1401)
   Supported benchmarks:
   ec2-t3-xlarge-us-east-2: Supported benchmark langs: Python, R. Runs only benchmarks with cloud = True
   test-mac-arm: Supported benchmark langs: C++, Python, R
   ursa-i9-9960x: Supported benchmark langs: Python, R, JavaScript
   ursa-thinkcentre-m75q: Supported benchmark langs: C++, Java
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] ursabot commented on pull request #13892: ARROW-12175: [C++] Fix CMake packages

Posted by GitBox <gi...@apache.org>.
ursabot commented on PR #13892:
URL: https://github.com/apache/arrow/pull/13892#issuecomment-1232065427

   ['Python', 'R'] benchmarks have high level of regressions.
   [ursa-i9-9960x](https://conbench.ursa.dev/compare/runs/716ec505baaa47ba8385862ebcbde968...742fdd2baccf405db3bc1c6a48604902/)
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org