You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by "paleolimbot (via GitHub)" <gi...@apache.org> on 2023/10/08 02:30:12 UTC

[PR] GH-37952: [C++] Make unique->shared explicit to fix build failure on at least one compiler [arrow]

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

   
   ### Rationale for this change
   
   The [test-r-rstudio-r-base-4.1-opensuse153](https://github.com/ursacomputing/crossbow/runs/17162402631) nightly has been failing with a compile error for many days.
   
   ### What changes are included in this PR?
   
   Made the unique->shared conversion explicit.
   
   ### Are these changes tested?
   
   Yes (by existing tests)
   
   ### Are there any user-facing changes?
   
   No.


-- 
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


Re: [PR] GH-37952: [C++] Make unique->shared explicit to fix build failure on at least one compiler [arrow]

Posted by "pitrou (via GitHub)" <gi...@apache.org>.
pitrou merged PR #38136:
URL: https://github.com/apache/arrow/pull/38136


-- 
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


Re: [PR] GH-37952: [C++] Make unique->shared explicit to fix build failure on at least one compiler [arrow]

Posted by "pitrou (via GitHub)" <gi...@apache.org>.
pitrou commented on PR #38136:
URL: https://github.com/apache/arrow/pull/38136#issuecomment-1753107514

   @github-actions crossbow submit -g nightly


-- 
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


Re: [PR] GH-37952: [C++] Make unique->shared explicit to fix build failure on at least one compiler [arrow]

Posted by "pitrou (via GitHub)" <gi...@apache.org>.
pitrou commented on PR #38136:
URL: https://github.com/apache/arrow/pull/38136#issuecomment-1753322498

   Ok, none of the CI failures is related. Thank you @paleolimbot !


-- 
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


Re: [PR] GH-37952: [C++] Make unique->shared explicit to fix build failure on at least one compiler [arrow]

Posted by "conbench-apache-arrow[bot] (via GitHub)" <gi...@apache.org>.
conbench-apache-arrow[bot] commented on PR #38136:
URL: https://github.com/apache/arrow/pull/38136#issuecomment-1756213159

   After merging your PR, Conbench analyzed the 5 benchmarking runs that have been run so far on merge-commit ad26f3ff2348292be8d723be64f443553c3703f3.
   
   There were no benchmark performance regressions. 🎉
   
   The [full Conbench report](https://github.com/apache/arrow/runs/17579989623) has more details. It also includes information about 1 possible false positive for unstable benchmarks that are known to sometimes produce them.


-- 
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


Re: [PR] GH-37952: [C++] Make unique->shared explicit to fix build failure on at least one compiler [arrow]

Posted by "github-actions[bot] (via GitHub)" <gi...@apache.org>.
github-actions[bot] commented on PR #38136:
URL: https://github.com/apache/arrow/pull/38136#issuecomment-1751898183

   Revision: 3e3333daf2ad3162c1e1a57fa75bf6e64587f52c
   
   Submitted crossbow builds: [ursacomputing/crossbow @ actions-94824ae4b6](https://github.com/ursacomputing/crossbow/branches/all?query=actions-94824ae4b6)
   
   |Task|Status|
   |----|------|
   |test-r-rstudio-r-base-4.1-opensuse153|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-94824ae4b6-azure-test-r-rstudio-r-base-4.1-opensuse153)](https://github.com/ursacomputing/crossbow/runs/17498630758)|


-- 
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


Re: [PR] GH-37952: [C++] Make unique->shared explicit to fix build failure on at least one compiler [arrow]

Posted by "paleolimbot (via GitHub)" <gi...@apache.org>.
paleolimbot commented on PR #38136:
URL: https://github.com/apache/arrow/pull/38136#issuecomment-1751897799

   @github-actions crossbow submit test-r-rstudio-r-base-4.1-opensuse153


-- 
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


Re: [PR] GH-37952: [C++] Make unique->shared explicit to fix build failure on at least one compiler [arrow]

Posted by "kou (via GitHub)" <gi...@apache.org>.
kou commented on code in PR #38136:
URL: https://github.com/apache/arrow/pull/38136#discussion_r1349773787


##########
cpp/src/arrow/dataset/file_parquet.cc:
##########
@@ -462,7 +462,9 @@ Result<std::shared_ptr<parquet::arrow::FileReader>> ParquetFileFormat::GetReader
   std::unique_ptr<parquet::arrow::FileReader> arrow_reader;
   RETURN_NOT_OK(parquet::arrow::FileReader::Make(
       options->pool, std::move(reader), std::move(arrow_properties), &arrow_reader));
-  return arrow_reader;
+
+  std::shared_ptr<parquet::arrow::FileReader> file_reader_shared(arrow_reader.release());
+  return file_reader_shared;

Review Comment:
   Does `return std::move(arrow_reader)` work?



-- 
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


Re: [PR] GH-37952: [C++] Make unique->shared explicit to fix build failure on at least one compiler [arrow]

Posted by "github-actions[bot] (via GitHub)" <gi...@apache.org>.
github-actions[bot] commented on PR #38136:
URL: https://github.com/apache/arrow/pull/38136#issuecomment-1753120565

   Revision: 465b5af4fbc51c24e5d70334fafc41debbed8b6d
   
   Submitted crossbow builds: [ursacomputing/crossbow @ actions-eefdca42ba](https://github.com/ursacomputing/crossbow/branches/all?query=actions-eefdca42ba)
   
   |Task|Status|
   |----|------|
   |almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457954511/job/17530618448)|
   |almalinux-8-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-almalinux-8-arm64)](https://github.com/ursacomputing/crossbow/actions/runs/6457954594/job/17530618791)|
   |almalinux-9-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-almalinux-9-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457954666/job/17530618968)|
   |almalinux-9-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-almalinux-9-arm64)](https://github.com/ursacomputing/crossbow/actions/runs/6457954627/job/17530618827)|
   |amazon-linux-2023-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-amazon-linux-2023-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457954840/job/17530619106)|
   |amazon-linux-2023-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-amazon-linux-2023-arm64)](https://github.com/ursacomputing/crossbow/actions/runs/6457954725/job/17530619170)|
   |centos-7-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-centos-7-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457954844/job/17530619169)|
   |centos-8-stream-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-centos-8-stream-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457954939/job/17530619319)|
   |centos-8-stream-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-centos-8-stream-arm64)](https://github.com/ursacomputing/crossbow/actions/runs/6457955061/job/17530619779)|
   |centos-9-stream-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-centos-9-stream-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457955022/job/17530619669)|
   |centos-9-stream-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-centos-9-stream-arm64)](https://github.com/ursacomputing/crossbow/actions/runs/6457955199/job/17530620078)|
   |conan-maximum|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-conan-maximum)](https://github.com/ursacomputing/crossbow/actions/runs/6457955157/job/17530619903)|
   |conan-minimum|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-conan-minimum)](https://github.com/ursacomputing/crossbow/actions/runs/6457955135/job/17530619976)|
   |conda-clean|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-eefdca42ba-azure-conda-clean)](https://github.com/ursacomputing/crossbow/runs/17530615503)|
   |conda-linux-aarch64-cpu-py3|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-eefdca42ba-azure-conda-linux-aarch64-cpu-py3)](https://github.com/ursacomputing/crossbow/runs/17530615330)|
   |conda-linux-aarch64-cpu-r42|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-eefdca42ba-azure-conda-linux-aarch64-cpu-r42)](https://github.com/ursacomputing/crossbow/runs/17530614737)|
   |conda-linux-aarch64-cpu-r43|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-eefdca42ba-azure-conda-linux-aarch64-cpu-r43)](https://github.com/ursacomputing/crossbow/runs/17530615492)|
   |conda-linux-aarch64-cuda-py3|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-eefdca42ba-azure-conda-linux-aarch64-cuda-py3)](https://github.com/ursacomputing/crossbow/runs/17530615249)|
   |conda-linux-ppc64le-cpu-py3|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-eefdca42ba-azure-conda-linux-ppc64le-cpu-py3)](https://github.com/ursacomputing/crossbow/runs/17530616116)|
   |conda-linux-ppc64le-cuda-py3|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-eefdca42ba-azure-conda-linux-ppc64le-cuda-py3)](https://github.com/ursacomputing/crossbow/runs/17530616173)|
   |conda-linux-x64-cpu-py3|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-eefdca42ba-azure-conda-linux-x64-cpu-py3)](https://github.com/ursacomputing/crossbow/runs/17530616083)|
   |conda-linux-x64-cpu-r42|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-eefdca42ba-azure-conda-linux-x64-cpu-r42)](https://github.com/ursacomputing/crossbow/runs/17530617302)|
   |conda-linux-x64-cpu-r43|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-eefdca42ba-azure-conda-linux-x64-cpu-r43)](https://github.com/ursacomputing/crossbow/runs/17530616094)|
   |conda-linux-x64-cuda-py3|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-eefdca42ba-azure-conda-linux-x64-cuda-py3)](https://github.com/ursacomputing/crossbow/runs/17530616150)|
   |conda-osx-arm64-cpu-py3|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-eefdca42ba-azure-conda-osx-arm64-cpu-py3)](https://github.com/ursacomputing/crossbow/runs/17530616684)|
   |conda-osx-arm64-cpu-r42|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-eefdca42ba-azure-conda-osx-arm64-cpu-r42)](https://github.com/ursacomputing/crossbow/runs/17530617205)|
   |conda-osx-arm64-cpu-r43|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-eefdca42ba-azure-conda-osx-arm64-cpu-r43)](https://github.com/ursacomputing/crossbow/runs/17530617842)|
   |conda-osx-x64-cpu-py3|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-eefdca42ba-azure-conda-osx-x64-cpu-py3)](https://github.com/ursacomputing/crossbow/runs/17530617846)|
   |conda-osx-x64-cpu-r42|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-eefdca42ba-azure-conda-osx-x64-cpu-r42)](https://github.com/ursacomputing/crossbow/runs/17530618277)|
   |conda-osx-x64-cpu-r43|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-eefdca42ba-azure-conda-osx-x64-cpu-r43)](https://github.com/ursacomputing/crossbow/runs/17530618001)|
   |conda-win-x64-cpu-py3|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-eefdca42ba-azure-conda-win-x64-cpu-py3)](https://github.com/ursacomputing/crossbow/runs/17530619111)|
   |conda-win-x64-cpu-r41|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-eefdca42ba-azure-conda-win-x64-cpu-r41)](https://github.com/ursacomputing/crossbow/runs/17530617777)|
   |conda-win-x64-cuda-py3|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-eefdca42ba-azure-conda-win-x64-cuda-py3)](https://github.com/ursacomputing/crossbow/runs/17530617747)|
   |debian-bookworm-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-debian-bookworm-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457955257/job/17530620170)|
   |debian-bookworm-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-debian-bookworm-arm64)](https://github.com/ursacomputing/crossbow/actions/runs/6457955231/job/17530620183)|
   |debian-bullseye-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-debian-bullseye-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457955396/job/17530620849)|
   |debian-bullseye-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-debian-bullseye-arm64)](https://github.com/ursacomputing/crossbow/actions/runs/6457955477/job/17530621090)|
   |debian-trixie-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-debian-trixie-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457955398/job/17530620892)|
   |debian-trixie-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-debian-trixie-arm64)](https://github.com/ursacomputing/crossbow/actions/runs/6457955499/job/17530621116)|
   |example-cpp-minimal-build-static|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-example-cpp-minimal-build-static)](https://github.com/ursacomputing/crossbow/actions/runs/6457955620/job/17530621252)|
   |example-cpp-minimal-build-static-system-dependency|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-example-cpp-minimal-build-static-system-dependency)](https://github.com/ursacomputing/crossbow/actions/runs/6457955604/job/17530621216)|
   |example-cpp-tutorial|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-example-cpp-tutorial)](https://github.com/ursacomputing/crossbow/actions/runs/6457955639/job/17530621752)|
   |example-python-minimal-build-fedora-conda|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-example-python-minimal-build-fedora-conda)](https://github.com/ursacomputing/crossbow/actions/runs/6457955641/job/17530621371)|
   |example-python-minimal-build-ubuntu-venv|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-example-python-minimal-build-ubuntu-venv)](https://github.com/ursacomputing/crossbow/actions/runs/6457955736/job/17530622253)|
   |homebrew-cpp|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-homebrew-cpp)](https://github.com/ursacomputing/crossbow/actions/runs/6457955887/job/17530622930)|
   |homebrew-r-autobrew|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-homebrew-r-autobrew)](https://github.com/ursacomputing/crossbow/actions/runs/6457955865/job/17530625522)|
   |homebrew-r-brew|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-homebrew-r-brew)](https://github.com/ursacomputing/crossbow/actions/runs/6457955986/job/17530623167)|
   |java-jars|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-java-jars)](https://github.com/ursacomputing/crossbow/actions/runs/6457955889/job/17530626522)|
   |nuget|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-nuget)](https://github.com/ursacomputing/crossbow/actions/runs/6457955909/job/17530623243)|
   |python-sdist|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-python-sdist)](https://github.com/ursacomputing/crossbow/actions/runs/6457956025/job/17530623311)|
   |test-alpine-linux-cpp|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-test-alpine-linux-cpp)](https://github.com/ursacomputing/crossbow/actions/runs/6457956086/job/17530623840)|
   |test-build-cpp-fuzz|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-test-build-cpp-fuzz)](https://github.com/ursacomputing/crossbow/actions/runs/6457955998/job/17530622998)|
   |test-build-vcpkg-win|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-test-build-vcpkg-win)](https://github.com/ursacomputing/crossbow/actions/runs/6457956169/job/17530624875)|
   |test-conda-cpp|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-test-conda-cpp)](https://github.com/ursacomputing/crossbow/actions/runs/6457956216/job/17530624907)|
   |test-conda-cpp-valgrind|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-eefdca42ba-azure-test-conda-cpp-valgrind)](https://github.com/ursacomputing/crossbow/runs/17530618755)|
   |test-conda-python-3.10|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-test-conda-python-3.10)](https://github.com/ursacomputing/crossbow/actions/runs/6457956237/job/17530625537)|
   |test-conda-python-3.10-cython2|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-test-conda-python-3.10-cython2)](https://github.com/ursacomputing/crossbow/actions/runs/6457956311/job/17530625843)|
   |test-conda-python-3.10-hdfs-2.9.2|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-test-conda-python-3.10-hdfs-2.9.2)](https://github.com/ursacomputing/crossbow/actions/runs/6457956332/job/17530625874)|
   |test-conda-python-3.10-hdfs-3.2.1|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-test-conda-python-3.10-hdfs-3.2.1)](https://github.com/ursacomputing/crossbow/actions/runs/6457956277/job/17530625778)|
   |test-conda-python-3.10-pandas-latest|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-test-conda-python-3.10-pandas-latest)](https://github.com/ursacomputing/crossbow/actions/runs/6457956393/job/17530626594)|
   |test-conda-python-3.10-pandas-nightly|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-test-conda-python-3.10-pandas-nightly)](https://github.com/ursacomputing/crossbow/actions/runs/6457956417/job/17530626596)|
   |test-conda-python-3.10-spark-v3.5.0|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-test-conda-python-3.10-spark-v3.5.0)](https://github.com/ursacomputing/crossbow/actions/runs/6457956575/job/17530627068)|
   |test-conda-python-3.10-substrait|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-test-conda-python-3.10-substrait)](https://github.com/ursacomputing/crossbow/actions/runs/6457956509/job/17530626791)|
   |test-conda-python-3.11|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-test-conda-python-3.11)](https://github.com/ursacomputing/crossbow/actions/runs/6457956476/job/17530626788)|
   |test-conda-python-3.11-dask-latest|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-test-conda-python-3.11-dask-latest)](https://github.com/ursacomputing/crossbow/actions/runs/6457956685/job/17530627111)|
   |test-conda-python-3.11-dask-upstream_devel|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-test-conda-python-3.11-dask-upstream_devel)](https://github.com/ursacomputing/crossbow/actions/runs/6457956621/job/17530627058)|
   |test-conda-python-3.11-hypothesis|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-test-conda-python-3.11-hypothesis)](https://github.com/ursacomputing/crossbow/actions/runs/6457956563/job/17530626810)|
   |test-conda-python-3.11-pandas-upstream_devel|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-test-conda-python-3.11-pandas-upstream_devel)](https://github.com/ursacomputing/crossbow/actions/runs/6457956720/job/17530627162)|
   |test-conda-python-3.11-spark-master|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-test-conda-python-3.11-spark-master)](https://github.com/ursacomputing/crossbow/actions/runs/6457956591/job/17530626888)|
   |test-conda-python-3.8|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-test-conda-python-3.8)](https://github.com/ursacomputing/crossbow/actions/runs/6457956860/job/17530627875)|
   |test-conda-python-3.8-pandas-1.0|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-test-conda-python-3.8-pandas-1.0)](https://github.com/ursacomputing/crossbow/actions/runs/6457956850/job/17530627908)|
   |test-conda-python-3.8-spark-v3.5.0|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-test-conda-python-3.8-spark-v3.5.0)](https://github.com/ursacomputing/crossbow/actions/runs/6457956845/job/17530627918)|
   |test-conda-python-3.9|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-test-conda-python-3.9)](https://github.com/ursacomputing/crossbow/actions/runs/6457956936/job/17530628111)|
   |test-conda-python-3.9-pandas-latest|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-test-conda-python-3.9-pandas-latest)](https://github.com/ursacomputing/crossbow/actions/runs/6457956927/job/17530628028)|
   |test-cuda-cpp|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-test-cuda-cpp)](https://github.com/ursacomputing/crossbow/actions/runs/6457957016/job/17530629088)|
   |test-cuda-python|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-test-cuda-python)](https://github.com/ursacomputing/crossbow/actions/runs/6457956962/job/17530628219)|
   |test-debian-11-cpp-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-test-debian-11-cpp-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457957021/job/17530628300)|
   |test-debian-11-cpp-i386|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-test-debian-11-cpp-i386)](https://github.com/ursacomputing/crossbow/actions/runs/6457957098/job/17530629093)|
   |test-debian-11-go-1.17|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-eefdca42ba-azure-test-debian-11-go-1.17)](https://github.com/ursacomputing/crossbow/runs/17530618756)|
   |test-debian-11-go-1.20|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-eefdca42ba-azure-test-debian-11-go-1.20)](https://github.com/ursacomputing/crossbow/runs/17530618820)|
   |test-debian-11-python-3|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-eefdca42ba-azure-test-debian-11-python-3)](https://github.com/ursacomputing/crossbow/runs/17530618797)|
   |test-debian-c-glib|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-test-debian-c-glib)](https://github.com/ursacomputing/crossbow/actions/runs/6457957165/job/17530660202)|
   |test-debian-ruby|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-test-debian-ruby)](https://github.com/ursacomputing/crossbow/actions/runs/6457957182/job/17530660208)|
   |test-fedora-35-cpp|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-test-fedora-35-cpp)](https://github.com/ursacomputing/crossbow/actions/runs/6457957153/job/17530629256)|
   |test-fedora-35-python-3|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-eefdca42ba-azure-test-fedora-35-python-3)](https://github.com/ursacomputing/crossbow/runs/17530619545)|
   |test-fedora-r-clang-sanitizer|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-eefdca42ba-azure-test-fedora-r-clang-sanitizer)](https://github.com/ursacomputing/crossbow/runs/17530619371)|
   |test-r-arrow-backwards-compatibility|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-test-r-arrow-backwards-compatibility)](https://github.com/ursacomputing/crossbow/actions/runs/6457957326/job/17530660464)|
   |test-r-depsource-bundled|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-eefdca42ba-azure-test-r-depsource-bundled)](https://github.com/ursacomputing/crossbow/runs/17530619294)|
   |test-r-depsource-system|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-test-r-depsource-system)](https://github.com/ursacomputing/crossbow/actions/runs/6457957389/job/17530661026)|
   |test-r-dev-duckdb|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-test-r-dev-duckdb)](https://github.com/ursacomputing/crossbow/actions/runs/6457957383/job/17530660644)|
   |test-r-devdocs|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-test-r-devdocs)](https://github.com/ursacomputing/crossbow/actions/runs/6457957374/job/17530663196)|
   |test-r-gcc-11|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-test-r-gcc-11)](https://github.com/ursacomputing/crossbow/actions/runs/6457957327/job/17530660252)|
   |test-r-gcc-12|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-test-r-gcc-12)](https://github.com/ursacomputing/crossbow/actions/runs/6457957403/job/17530661069)|
   |test-r-install-local|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-test-r-install-local)](https://github.com/ursacomputing/crossbow/actions/runs/6457957703/job/17530662061)|
   |test-r-install-local-minsizerel|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-test-r-install-local-minsizerel)](https://github.com/ursacomputing/crossbow/actions/runs/6457957738/job/17530662017)|
   |test-r-library-r-base-latest|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-eefdca42ba-azure-test-r-library-r-base-latest)](https://github.com/ursacomputing/crossbow/runs/17530620367)|
   |test-r-linux-as-cran|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-test-r-linux-as-cran)](https://github.com/ursacomputing/crossbow/actions/runs/6457957863/job/17530665821)|
   |test-r-linux-rchk|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-test-r-linux-rchk)](https://github.com/ursacomputing/crossbow/actions/runs/6457957967/job/17530662222)|
   |test-r-linux-valgrind|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-eefdca42ba-azure-test-r-linux-valgrind)](https://github.com/ursacomputing/crossbow/runs/17530620200)|
   |test-r-minimal-build|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-eefdca42ba-azure-test-r-minimal-build)](https://github.com/ursacomputing/crossbow/runs/17530620222)|
   |test-r-offline-maximal|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-test-r-offline-maximal)](https://github.com/ursacomputing/crossbow/actions/runs/6457957980/job/17530662202)|
   |test-r-offline-minimal|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-eefdca42ba-azure-test-r-offline-minimal)](https://github.com/ursacomputing/crossbow/runs/17530620316)|
   |test-r-rhub-debian-gcc-devel-lto-latest|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-eefdca42ba-azure-test-r-rhub-debian-gcc-devel-lto-latest)](https://github.com/ursacomputing/crossbow/runs/17530620669)|
   |test-r-rhub-debian-gcc-release-custom-ccache|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-eefdca42ba-azure-test-r-rhub-debian-gcc-release-custom-ccache)](https://github.com/ursacomputing/crossbow/runs/17530620246)|
   |test-r-rhub-ubuntu-gcc-release-latest|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-eefdca42ba-azure-test-r-rhub-ubuntu-gcc-release-latest)](https://github.com/ursacomputing/crossbow/runs/17530620735)|
   |test-r-rstudio-r-base-4.1-opensuse153|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-eefdca42ba-azure-test-r-rstudio-r-base-4.1-opensuse153)](https://github.com/ursacomputing/crossbow/runs/17530620725)|
   |test-r-rstudio-r-base-4.2-centos7-devtoolset-8|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-eefdca42ba-azure-test-r-rstudio-r-base-4.2-centos7-devtoolset-8)](https://github.com/ursacomputing/crossbow/runs/17530621084)|
   |test-r-rstudio-r-base-4.2-focal|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-eefdca42ba-azure-test-r-rstudio-r-base-4.2-focal)](https://github.com/ursacomputing/crossbow/runs/17530621658)|
   |test-r-ubuntu-22.04|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-test-r-ubuntu-22.04)](https://github.com/ursacomputing/crossbow/actions/runs/6457958085/job/17530662318)|
   |test-r-versions|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-test-r-versions)](https://github.com/ursacomputing/crossbow/actions/runs/6457958158/job/17530665807)|
   |test-skyhook-integration|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-test-skyhook-integration)](https://github.com/ursacomputing/crossbow/actions/runs/6457958068/job/17530662331)|
   |test-ubuntu-20.04-cpp|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-test-ubuntu-20.04-cpp)](https://github.com/ursacomputing/crossbow/actions/runs/6457958160/job/17530662587)|
   |test-ubuntu-20.04-cpp-bundled|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-test-ubuntu-20.04-cpp-bundled)](https://github.com/ursacomputing/crossbow/actions/runs/6457958183/job/17530663192)|
   |test-ubuntu-20.04-cpp-minimal-with-formats|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-test-ubuntu-20.04-cpp-minimal-with-formats)](https://github.com/ursacomputing/crossbow/actions/runs/6457958152/job/17530662505)|
   |test-ubuntu-20.04-cpp-thread-sanitizer|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-test-ubuntu-20.04-cpp-thread-sanitizer)](https://github.com/ursacomputing/crossbow/actions/runs/6457958292/job/17530664340)|
   |test-ubuntu-20.04-python-3|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-eefdca42ba-azure-test-ubuntu-20.04-python-3)](https://github.com/ursacomputing/crossbow/runs/17530621721)|
   |test-ubuntu-22.04-cpp|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-test-ubuntu-22.04-cpp)](https://github.com/ursacomputing/crossbow/actions/runs/6457958331/job/17530663455)|
   |test-ubuntu-22.04-cpp-20|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-test-ubuntu-22.04-cpp-20)](https://github.com/ursacomputing/crossbow/actions/runs/6457958425/job/17530663480)|
   |test-ubuntu-22.04-cpp-no-threading|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-test-ubuntu-22.04-cpp-no-threading)](https://github.com/ursacomputing/crossbow/actions/runs/6457958526/job/17530664412)|
   |test-ubuntu-22.04-docs|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-test-ubuntu-22.04-docs)](https://github.com/ursacomputing/crossbow/actions/runs/6457958379/job/17530663482)|
   |test-ubuntu-22.04-python-3|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-test-ubuntu-22.04-python-3)](https://github.com/ursacomputing/crossbow/actions/runs/6457958388/job/17530663437)|
   |test-ubuntu-c-glib|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-test-ubuntu-c-glib)](https://github.com/ursacomputing/crossbow/actions/runs/6457958500/job/17530663753)|
   |test-ubuntu-r-sanitizer|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-eefdca42ba-azure-test-ubuntu-r-sanitizer)](https://github.com/ursacomputing/crossbow/runs/17530621568)|
   |test-ubuntu-ruby|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-test-ubuntu-ruby)](https://github.com/ursacomputing/crossbow/actions/runs/6457958572/job/17530665857)|
   |ubuntu-focal-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-ubuntu-focal-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457958453/job/17530663696)|
   |ubuntu-focal-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-ubuntu-focal-arm64)](https://github.com/ursacomputing/crossbow/actions/runs/6457958618/job/17530666098)|
   |ubuntu-jammy-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-ubuntu-jammy-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457958683/job/17530666146)|
   |ubuntu-jammy-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-ubuntu-jammy-arm64)](https://github.com/ursacomputing/crossbow/actions/runs/6457958574/job/17530665874)|
   |ubuntu-lunar-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-ubuntu-lunar-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457958790/job/17530666149)|
   |ubuntu-lunar-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-ubuntu-lunar-arm64)](https://github.com/ursacomputing/crossbow/actions/runs/6457958781/job/17530666108)|
   |verify-rc-source-cpp-linux-almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-verify-rc-source-cpp-linux-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457958819/job/17530664703)|
   |verify-rc-source-cpp-linux-conda-latest-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-verify-rc-source-cpp-linux-conda-latest-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457958750/job/17530664633)|
   |verify-rc-source-cpp-linux-ubuntu-20.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-verify-rc-source-cpp-linux-ubuntu-20.04-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457958806/job/17530666461)|
   |verify-rc-source-cpp-linux-ubuntu-22.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-verify-rc-source-cpp-linux-ubuntu-22.04-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457958983/job/17530664669)|
   |verify-rc-source-cpp-macos-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-verify-rc-source-cpp-macos-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457958971/job/17530666436)|
   |verify-rc-source-cpp-macos-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-verify-rc-source-cpp-macos-arm64)](https://github.com/ursacomputing/crossbow/actions/runs/6457958957/job/17530666401)|
   |verify-rc-source-cpp-macos-conda-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-verify-rc-source-cpp-macos-conda-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457959086/job/17530666413)|
   |verify-rc-source-csharp-linux-almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-verify-rc-source-csharp-linux-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457959128/job/17530666705)|
   |verify-rc-source-csharp-linux-conda-latest-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-verify-rc-source-csharp-linux-conda-latest-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457959112/job/17530666719)|
   |verify-rc-source-csharp-linux-ubuntu-20.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-verify-rc-source-csharp-linux-ubuntu-20.04-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457959166/job/17530666769)|
   |verify-rc-source-csharp-linux-ubuntu-22.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-verify-rc-source-csharp-linux-ubuntu-22.04-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457959210/job/17530664931)|
   |verify-rc-source-csharp-macos-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-verify-rc-source-csharp-macos-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457959250/job/17530666818)|
   |verify-rc-source-csharp-macos-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-verify-rc-source-csharp-macos-arm64)](https://github.com/ursacomputing/crossbow/actions/runs/6457959261/job/17530664961)|
   |verify-rc-source-go-linux-almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-verify-rc-source-go-linux-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457959184/job/17530664738)|
   |verify-rc-source-go-linux-conda-latest-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-verify-rc-source-go-linux-conda-latest-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457959319/job/17530697430)|
   |verify-rc-source-go-linux-ubuntu-20.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-verify-rc-source-go-linux-ubuntu-20.04-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457959427/job/17530697409)|
   |verify-rc-source-go-linux-ubuntu-22.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-verify-rc-source-go-linux-ubuntu-22.04-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457959426/job/17530697446)|
   |verify-rc-source-go-macos-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-verify-rc-source-go-macos-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457959637/job/17530698054)|
   |verify-rc-source-go-macos-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-verify-rc-source-go-macos-arm64)](https://github.com/ursacomputing/crossbow/actions/runs/6457959534/job/17530698064)|
   |verify-rc-source-integration-linux-almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-verify-rc-source-integration-linux-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457959481/job/17530697453)|
   |verify-rc-source-integration-linux-conda-latest-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-verify-rc-source-integration-linux-conda-latest-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457959500/job/17530697709)|
   |verify-rc-source-integration-linux-ubuntu-20.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-verify-rc-source-integration-linux-ubuntu-20.04-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457959632/job/17530698829)|
   |verify-rc-source-integration-linux-ubuntu-22.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-verify-rc-source-integration-linux-ubuntu-22.04-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457959612/job/17530698069)|
   |verify-rc-source-integration-macos-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-verify-rc-source-integration-macos-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457959644/job/17530698384)|
   |verify-rc-source-integration-macos-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-verify-rc-source-integration-macos-arm64)](https://github.com/ursacomputing/crossbow/actions/runs/6457959779/job/17530698823)|
   |verify-rc-source-integration-macos-conda-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-verify-rc-source-integration-macos-conda-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457959708/job/17530698840)|
   |verify-rc-source-java-linux-almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-verify-rc-source-java-linux-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457959724/job/17530698464)|
   |verify-rc-source-java-linux-conda-latest-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-verify-rc-source-java-linux-conda-latest-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457959818/job/17530699067)|
   |verify-rc-source-java-linux-ubuntu-20.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-verify-rc-source-java-linux-ubuntu-20.04-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457959735/job/17530698843)|
   |verify-rc-source-java-linux-ubuntu-22.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-verify-rc-source-java-linux-ubuntu-22.04-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457959865/job/17530699758)|
   |verify-rc-source-java-macos-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-verify-rc-source-java-macos-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457959931/job/17530699754)|
   |verify-rc-source-js-linux-almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-verify-rc-source-js-linux-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457959877/job/17530699733)|
   |verify-rc-source-js-linux-conda-latest-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-verify-rc-source-js-linux-conda-latest-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457959972/job/17530699086)|
   |verify-rc-source-js-linux-ubuntu-20.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-verify-rc-source-js-linux-ubuntu-20.04-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457959993/job/17530699077)|
   |verify-rc-source-js-linux-ubuntu-22.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-verify-rc-source-js-linux-ubuntu-22.04-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457960058/job/17530699343)|
   |verify-rc-source-js-macos-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-verify-rc-source-js-macos-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457960000/job/17530699124)|
   |verify-rc-source-js-macos-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-verify-rc-source-js-macos-arm64)](https://github.com/ursacomputing/crossbow/actions/runs/6457960064/job/17530699773)|
   |verify-rc-source-python-linux-almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-verify-rc-source-python-linux-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457960113/job/17530700009)|
   |verify-rc-source-python-linux-conda-latest-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-verify-rc-source-python-linux-conda-latest-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457960142/job/17530700028)|
   |verify-rc-source-python-linux-ubuntu-20.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-verify-rc-source-python-linux-ubuntu-20.04-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457960199/job/17530700057)|
   |verify-rc-source-python-linux-ubuntu-22.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-verify-rc-source-python-linux-ubuntu-22.04-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457960269/job/17530700308)|
   |verify-rc-source-python-macos-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-verify-rc-source-python-macos-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457960264/job/17530700070)|
   |verify-rc-source-python-macos-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-verify-rc-source-python-macos-arm64)](https://github.com/ursacomputing/crossbow/actions/runs/6457960273/job/17530700310)|
   |verify-rc-source-python-macos-conda-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-verify-rc-source-python-macos-conda-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457960274/job/17530735161)|
   |verify-rc-source-ruby-linux-almalinux-8-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-verify-rc-source-ruby-linux-almalinux-8-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457960290/job/17530735130)|
   |verify-rc-source-ruby-linux-conda-latest-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-verify-rc-source-ruby-linux-conda-latest-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457960308/job/17530735065)|
   |verify-rc-source-ruby-linux-ubuntu-20.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-verify-rc-source-ruby-linux-ubuntu-20.04-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457960389/job/17530735334)|
   |verify-rc-source-ruby-linux-ubuntu-22.04-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-verify-rc-source-ruby-linux-ubuntu-22.04-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457960373/job/17530735095)|
   |verify-rc-source-ruby-macos-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-verify-rc-source-ruby-macos-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457960432/job/17530735371)|
   |verify-rc-source-ruby-macos-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-verify-rc-source-ruby-macos-arm64)](https://github.com/ursacomputing/crossbow/actions/runs/6457960467/job/17530735502)|
   |verify-rc-source-windows|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-verify-rc-source-windows)](https://github.com/ursacomputing/crossbow/actions/runs/6457960474/job/17530735959)|
   |wheel-clean|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-wheel-clean)](https://github.com/ursacomputing/crossbow/actions/runs/6457960485/job/17530735864)|
   |wheel-macos-big-sur-cp310-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-wheel-macos-big-sur-cp310-arm64)](https://github.com/ursacomputing/crossbow/actions/runs/6457960585/job/17530735884)|
   |wheel-macos-big-sur-cp311-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-wheel-macos-big-sur-cp311-arm64)](https://github.com/ursacomputing/crossbow/actions/runs/6457960634/job/17530736521)|
   |wheel-macos-big-sur-cp38-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-wheel-macos-big-sur-cp38-arm64)](https://github.com/ursacomputing/crossbow/actions/runs/6457960606/job/17530735874)|
   |wheel-macos-big-sur-cp39-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-wheel-macos-big-sur-cp39-arm64)](https://github.com/ursacomputing/crossbow/actions/runs/6457960721/job/17530736484)|
   |wheel-macos-mojave-cp310-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-wheel-macos-mojave-cp310-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457960679/job/17530736483)|
   |wheel-macos-mojave-cp311-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-wheel-macos-mojave-cp311-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457960818/job/17530737170)|
   |wheel-macos-mojave-cp38-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-wheel-macos-mojave-cp38-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457960838/job/17530737214)|
   |wheel-macos-mojave-cp39-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-wheel-macos-mojave-cp39-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457960855/job/17530737166)|
   |wheel-manylinux-2-28-cp310-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-wheel-manylinux-2-28-cp310-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457960902/job/17530737405)|
   |wheel-manylinux-2-28-cp310-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-wheel-manylinux-2-28-cp310-arm64)](https://github.com/ursacomputing/crossbow/actions/runs/6457960878/job/17530737195)|
   |wheel-manylinux-2-28-cp311-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-wheel-manylinux-2-28-cp311-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457960890/job/17530737440)|
   |wheel-manylinux-2-28-cp311-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-wheel-manylinux-2-28-cp311-arm64)](https://github.com/ursacomputing/crossbow/actions/runs/6457960958/job/17530737466)|
   |wheel-manylinux-2-28-cp38-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-wheel-manylinux-2-28-cp38-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457961012/job/17530738266)|
   |wheel-manylinux-2-28-cp38-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-wheel-manylinux-2-28-cp38-arm64)](https://github.com/ursacomputing/crossbow/actions/runs/6457960996/job/17530737524)|
   |wheel-manylinux-2-28-cp39-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-wheel-manylinux-2-28-cp39-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457961026/job/17530738295)|
   |wheel-manylinux-2-28-cp39-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-wheel-manylinux-2-28-cp39-arm64)](https://github.com/ursacomputing/crossbow/actions/runs/6457961113/job/17530738545)|
   |wheel-manylinux-2014-cp310-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-wheel-manylinux-2014-cp310-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457961064/job/17530738310)|
   |wheel-manylinux-2014-cp310-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-wheel-manylinux-2014-cp310-arm64)](https://github.com/ursacomputing/crossbow/actions/runs/6457961149/job/17530738593)|
   |wheel-manylinux-2014-cp311-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-wheel-manylinux-2014-cp311-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457961089/job/17530738318)|
   |wheel-manylinux-2014-cp311-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-wheel-manylinux-2014-cp311-arm64)](https://github.com/ursacomputing/crossbow/actions/runs/6457961145/job/17530738610)|
   |wheel-manylinux-2014-cp38-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-wheel-manylinux-2014-cp38-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457961236/job/17530738616)|
   |wheel-manylinux-2014-cp38-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-wheel-manylinux-2014-cp38-arm64)](https://github.com/ursacomputing/crossbow/actions/runs/6457961284/job/17530738923)|
   |wheel-manylinux-2014-cp39-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-wheel-manylinux-2014-cp39-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457961304/job/17530738897)|
   |wheel-manylinux-2014-cp39-arm64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-wheel-manylinux-2014-cp39-arm64)](https://github.com/ursacomputing/crossbow/actions/runs/6457961319/job/17530738888)|
   |wheel-windows-cp310-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-wheel-windows-cp310-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457961393/job/17530739134)|
   |wheel-windows-cp311-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-wheel-windows-cp311-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457961342/job/17530738881)|
   |wheel-windows-cp38-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-wheel-windows-cp38-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457961370/job/17530739121)|
   |wheel-windows-cp39-amd64|[![Github Actions](https://github.com/ursacomputing/crossbow/actions/workflows/crossbow.yml/badge.svg?branch=actions-eefdca42ba-github-wheel-windows-cp39-amd64)](https://github.com/ursacomputing/crossbow/actions/runs/6457961421/job/17530739153)|


-- 
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


Re: [PR] GH-37952: [C++] Make unique->shared explicit to fix build failure on at least one compiler [arrow]

Posted by "github-actions[bot] (via GitHub)" <gi...@apache.org>.
github-actions[bot] commented on PR #38136:
URL: https://github.com/apache/arrow/pull/38136#issuecomment-1752225504

   Revision: 465b5af4fbc51c24e5d70334fafc41debbed8b6d
   
   Submitted crossbow builds: [ursacomputing/crossbow @ actions-ecf7a4c44e](https://github.com/ursacomputing/crossbow/branches/all?query=actions-ecf7a4c44e)
   
   |Task|Status|
   |----|------|
   |test-r-rstudio-r-base-4.1-opensuse153|[![Azure](https://dev.azure.com/ursacomputing/crossbow/_apis/build/status/ursacomputing.crossbow?branchName=actions-ecf7a4c44e-azure-test-r-rstudio-r-base-4.1-opensuse153)](https://github.com/ursacomputing/crossbow/runs/17511432168)|


-- 
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


Re: [PR] GH-37952: [C++] Make unique->shared explicit to fix build failure on at least one compiler [arrow]

Posted by "paleolimbot (via GitHub)" <gi...@apache.org>.
paleolimbot commented on PR #38136:
URL: https://github.com/apache/arrow/pull/38136#issuecomment-1752224422

   @github-actions crossbow submit test-r-rstudio-r-base-4.1-opensuse153


-- 
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


Re: [PR] GH-37952: [C++] Make unique->shared explicit to fix build failure on at least one compiler [arrow]

Posted by "github-actions[bot] (via GitHub)" <gi...@apache.org>.
github-actions[bot] commented on PR #38136:
URL: https://github.com/apache/arrow/pull/38136#issuecomment-1751897714

   :warning: GitHub issue #37952 **has been automatically assigned in GitHub** to PR creator.


-- 
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