Re: [PR] WIP: [Release] Verify release-20.0.0-rc1 [arrow]
assignUser closed pull request #46152: WIP: [Release] Verify release-20.0.0-rc1 URL: https://github.com/apache/arrow/pull/46152 -- 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-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: [PR] WIP: [Release] Verify release-20.0.0-rc1 [arrow]
raulcd commented on PR #46152: URL: https://github.com/apache/arrow/pull/46152#issuecomment-2810183450 I am unsure on the macOS verification failures due to Gtest, I can try and investigate tomorrow. As per the debian-docs failure I've opened an issue and pushed a PR for it https://github.com/apache/arrow/pull/46171 -- 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-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: [PR] WIP: [Release] Verify release-20.0.0-rc1 [arrow]
assignUser commented on PR #46152: URL: https://github.com/apache/arrow/pull/46152#issuecomment-2809941918 Hm, it's just the nightly package binaries... we should probably make them optional for releases or something? -- 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-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: [PR] WIP: [Release] Verify release-20.0.0-rc1 [arrow]
assignUser commented on PR #46152: URL: https://github.com/apache/arrow/pull/46152#issuecomment-2809903253 > We may need the following for the r-binary-packages failure: Ah, how unlucky, yes R 4.5 was just released. I'll have a look -- 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-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: [PR] WIP: [Release] Verify release-20.0.0-rc1 [arrow]
kou commented on PR #46152: URL: https://github.com/apache/arrow/pull/46152#issuecomment-2809772625 @assignUser @raulcd Could you take a look at the r-binary-packages failure https://github.com/ursacomputing/crossbow/actions/runs/14477217372/job/40614786493#step:10:63 ```tet r-pkg__bin__windows__contrib__4.4__arrow_20.0.0.zip [ OK] r-pkg__bin__windows__contrib__4.3__arrow_20.0.0\.zip [PENDING] r-pkg__bin__macosx__big-sur-x86_64__contrib__4.4__arrow_20.0.0.tgz [ OK] r-pkg__bin__macosx__big-sur-x86_64__contrib__4.3__arrow_20.0.0\.tgz [PENDING] r-pkg__bin__macosx__big-sur-arm64__contrib__4.4__arrow_20.0.0.tgz [ OK] r-pkg__bin__macosx__big-sur-arm64__contrib__4.3__arrow_20.0.0\.tgz [PENDING] ``` and test-debian-12-docs failure https://github.com/ursacomputing/crossbow/actions/runs/14477224236/job/40605666285#step:7:1731 ```text [ 21%] Building CXX object _deps/googletest-build/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o In file included from /var/folders/q3/_34lch1n3xsdf28hd1xbrxdhgn/T/arrow-20.0.0.X.XNzS7e8f/cpp-build/_deps/googletest-src/googlemock/src/gmock-all.cc:39: In file included from /var/folders/q3/_34lch1n3xsdf28hd1xbrxdhgn/T/arrow-20.0.0.X.XNzS7e8f/cpp-build/_deps/googletest-src/googlemock/include/gmock/gmock.h:59: In file included from /var/folders/q3/_34lch1n3xsdf28hd1xbrxdhgn/T/arrow-20.0.0.X.XNzS7e8f/cpp-build/_deps/googletest-src/googlemock/include/gmock/gmock-actions.h:145: /var/folders/q3/_34lch1n3xsdf28hd1xbrxdhgn/T/arrow-20.0.0.X.XNzS7e8f/cpp-build/_deps/googletest-src/googlemock/include/gmock/internal/gmock-internal-utils.h:405:37: error: no template named 'IndexSequence'; did you mean 'std::index_sequence'? auto ApplyImpl(F&& f, Tuple&& args, IndexSequence) -> decltype( ^ std::index_sequence /Applications/Xcode_15.2.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/v1/__utility/integer_sequence.h:104:5: note: 'std::index_sequence' declared here using index_sequence = integer_sequence; ^ ``` ? We may need the following for the r-binary-packages failure: ```diff diff --git a/dev/tasks/tasks.yml b/dev/tasks/tasks.yml index cae34c3231..2f5429b6d7 100644 --- a/dev/tasks/tasks.yml +++ b/dev/tasks/tasks.yml @@ -888,12 +888,12 @@ tasks: - r-lib__libarrow__bin__darwin-arm64-openssl-3.0__arrow-{no_rc_r_version}\.zip - r-lib__libarrow__bin__darwin-x86_64-openssl-1.1__arrow-{no_rc_r_version}\.zip - r-lib__libarrow__bin__darwin-x86_64-openssl-3.0__arrow-{no_rc_r_version}\.zip + - r-pkg__bin__windows__contrib__4.5__arrow_{no_rc_r_version}\.zip - r-pkg__bin__windows__contrib__4.4__arrow_{no_rc_r_version}\.zip - - r-pkg__bin__windows__contrib__4.3__arrow_{no_rc_r_version}\.zip + - r-pkg__bin__macosx__big-sur-x86_64__contrib__4.5__arrow_{no_rc_r_version}\.tgz - r-pkg__bin__macosx__big-sur-x86_64__contrib__4.4__arrow_{no_rc_r_version}\.tgz - - r-pkg__bin__macosx__big-sur-x86_64__contrib__4.3__arrow_{no_rc_r_version}\.tgz + - r-pkg__bin__macosx__big-sur-arm64__contrib__4.5__arrow_{no_rc_r_version}\.tgz - r-pkg__bin__macosx__big-sur-arm64__contrib__4.4__arrow_{no_rc_r_version}\.tgz - - r-pkg__bin__macosx__big-sur-arm64__contrib__4.3__arrow_{no_rc_r_version}\.tgz - r-pkg__src__contrib__arrow_{no_rc_r_version}\.tar\.gz ``` -- 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-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: [PR] WIP: [Release] Verify release-20.0.0-rc1 [arrow]
kou commented on PR #46152: URL: https://github.com/apache/arrow/pull/46152#issuecomment-2807183435 @github-actions crossbow submit --group verify-rc-source --param release=20.0.0 --param rc=1 -- 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-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
Re: [PR] WIP: [Release] Verify release-20.0.0-rc1 [arrow]
github-actions[bot] commented on PR #46152: URL: https://github.com/apache/arrow/pull/46152#issuecomment-2807190690 Revision: 8e83a99e8399abd3c5bc539941b6bb9bfefae0e0 Submitted crossbow builds: [ursacomputing/crossbow @ actions-b0123f432f](https://github.com/ursacomputing/crossbow/branches/all?query=actions-b0123f432f) |Task|Status| ||--| |verify-rc-source-cpp-linux-almalinux-8-amd64|[](https://github.com/ursacomputing/crossbow/actions/runs/14477224196/job/40605668454)| |verify-rc-source-cpp-linux-conda-latest-amd64|[](https://github.com/ursacomputing/crossbow/actions/runs/14477223366/job/40605665180)| |verify-rc-source-cpp-linux-ubuntu-22.04-amd64|[](https://github.com/ursacomputing/crossbow/actions/runs/14477224258/job/40605668749)| |verify-rc-source-cpp-linux-ubuntu-24.04-amd64|[](https://github.com/ursacomputing/crossbow/actions/runs/14477224141/job/40605667327)| |verify-rc-source-cpp-macos-amd64|[](https://github.com/ursacomputing/crossbow/actions/runs/14477224236/job/40605666285)| |verify-rc-source-cpp-macos-arm64|[](https://github.com/ursacomputing/crossbow/actions/runs/14477224899/job/40605671901)| |verify-rc-source-cpp-macos-conda-amd64|[](https://github.com/ursacomputing/crossbow/actions/runs/14477224012/job/40605666426)| |verify-rc-source-csharp-linux-almalinux-8-amd64|[](https://github.com/ursacomputing/crossbow/actions/runs/14477224823/job/40605672038)| |verify-rc-source-csharp-linux-conda-latest-amd64|[](https://github.com/ursacomputing/crossbow/actions/runs/14477223670/job/40605665252)| |verify-rc-source-csharp-linux-ubuntu-22.04-amd64|[](https://github.com/ursacomputing/crossbow/actions/runs/14477224691/job/40605671051)| |verify-rc-source-csharp-linux-ubuntu-24.04-amd64|[](https://github.com/ursacomputing/crossbow/actions/runs/14477224015/job/40605667064)| |verify-rc-source-csharp-macos-amd64|[](https://github.com/ursacomputing/crossbow/actions/runs/14477224468/job/40605670254)| |verify-rc-source-csharp-macos-arm64|[](https://github.com/ursacomputing/crossbow/actions/runs/14477224357/job/40605670396)| |verify-rc-source-integration-linux-almalinux-8-amd64|[](https://github.com/ursacomputing/crossbow/actions/runs/14477224442/job/40605669943)| |verify-rc-source-integration-linux-conda-latest-amd64|[ |Task|Status| ||--| |almalinux-8-amd64|[](https://github.com/ursacomputing/crossbow/tree/release-20.0.0-rc1-0-github-almalinux-8-amd64)| |almalinux-8-arm64|[](https://github.com/ursacomputing/crossbow/actions/runs/14477216615/job/40605633660)| |almalinux-9-amd64|[](https://github.com/ursacomputing/crossbow/tree/release-20.0.0-rc1-0-github-almalinux-9-amd64)| |almalinux-9-arm64|[](https://github.com/ursacomputing/crossbow/actions/runs/14477217062/job/40605636105)| |amazon-linux-2023-amd64|[](https://github.com/ursacomputing/crossbow/actions/runs/14477217166/job/40605638031)| |amazon-linux-2023-arm64|[](https://github.com/ursacomputing/crossbow/tree/release-20.0.0-rc1-0-github-amazon-linux-2023-arm64)| |centos-7-amd64|[](https://github.com/ursacomputing/crossbow/actions/runs/14477217848/job/40605645155)| |centos-8-stream-amd64|[](https://github.com/ursacomputing/crossbow/tree/release-20.0.0-rc1-0-github-centos-8-stream-amd64)| |centos-8-stream-arm64|[](https://github.com/ursacomputing/crossbow/tree/release-20.0.0-rc1-0-github-centos-8-stream-arm64)| |centos-9-stream-amd64|[](https://github.com/ursacomputing/crossbow/actions/runs/14477218017/job/40605645567)| |centos-9-stream-arm64|[](https://github.com/ursacomputing/crossbow/actions/runs/14477217246/job/40605639254)| |conan-maximum|[](https://github.com/ursacomputing/crossbow/actions/runs/14477217353/job/40605642762)| |conan-minimum|[](https://github.com/ursacomputing/crossbow/actions/runs/14477218094/job/40605649977)| |debian-bookworm-amd64|[](https://github.com/ursacomputing/crossbow/actions/runs/14477217050/job/40605637175)| |debian-bookworm-arm64|[](https://github.com/ursacomputing/crossbow/actions/runs/14477216571/job/40605632956)| |debian-trixie-amd64|[](https://github.com/ursacomputing/crossbow/actions/runs/14477217232/job/40605638731)| |debian-trixie-arm64|[](https://github.com/ursacomputing/crossbow/actions/runs/14477216701/job/40605634153)| |matlab|[![GitHub Action
[PR] WIP: [Release] Verify release-20.0.0-rc1 [arrow]
kou opened a new pull request, #46152: URL: https://github.com/apache/arrow/pull/46152 PR to verify Release Candidate -- 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-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org