Re: [PR] GH-47205: [R] Suppress GNU variadic macro warning from Thrift in package build [arrow]
thisisnic commented on PR #47206: URL: https://github.com/apache/arrow/pull/47206#issuecomment-3210552042 @github-actions crossbow submit test-r-linux-as-cran -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
Re: [PR] GH-47205: [R] Suppress GNU variadic macro warning from Thrift in package build [arrow]
kou commented on PR #47206:
URL: https://github.com/apache/arrow/pull/47206#issuecomment-3172891849
Oh, good point.
I found the "png" error message in a succeeded job:
https://github.com/ursacomputing/crossbow/actions/runs/16855440618/job/47747680991#step:5:28745
```text
#22 111.6 make: *** [Makefile:96: png.ts] Error 1
```
It's not related to this problem.
And the latest nightly job passed without our side change. It might be a
DockerHub problem.
BTW, we should set timeout for this workflow:
```diff
diff --git a/dev/tasks/r/github.linux.cran.yml
b/dev/tasks/r/github.linux.cran.yml
index 435e37fc53..43c13c3a8b 100644
--- a/dev/tasks/r/github.linux.cran.yml
+++ b/dev/tasks/r/github.linux.cran.yml
@@ -23,6 +23,7 @@ jobs:
as-cran:
name: "rhub/{{ '${{ matrix.config.r_image }}' }}"
runs-on: ubuntu-latest
+timeout-minutes: 45
strategy:
fail-fast: false
matrix:
```
We should not wait for 6 hours for this problem.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
Re: [PR] GH-47205: [R] Suppress GNU variadic macro warning from Thrift in package build [arrow]
thisisnic commented on PR #47206: URL: https://github.com/apache/arrow/pull/47206#issuecomment-3167742601 > I think that the "importing ..." message isn't the real problem. > > I think that "png" install failure is the real problem: > > https://github.com/ursacomputing/crossbow/actions/runs/16802437902/job/47586721783#step:5:2076 > > ``` > #22 104.3 make: *** [Makefile:96: png.ts] Error 1 > ``` I'm a bit unsure about the source of these failing builds tbh; this other one is failing with a different reason, and the only thing I see they have in common is that the last line is the "importing..." stuff, e.g. https://github.com/ursacomputing/crossbow/actions/runs/16802437902/job/47586721794#step:5:1247 Looking at the [raw logs](https://productionresultssa8.blob.core.windows.net/actions-results/e30036e9-eb80-488a-8900-14ae33a93620/workflow-job-run-ed9aea8d-9b88-5bff-b71e-5995c28c0278/logs/job/job-logs.txt?rsct=text%2Fplain&se=2025-08-08T12%3A44%3A27Z&sig=xh16HEssx0OjesYHlkEgBDNf4Xbx8Q6tMrCPYao%2Bbp8%3D&ske=2025-08-08T23%3A05%3A07Z&skoid=ca7593d4-ee42-46cd-af88-8b886a2f84eb&sks=b&skt=2025-08-08T11%3A05%3A07Z&sktid=398a6654-997b-47e9-b12b-9515b896b4de&skv=2025-05-05&sp=r&spr=https&sr=b&st=2025-08-08T12%3A34%3A22Z&sv=2025-05-05), there's a really long delay where the job just hangs, e.g. ``` 2025-08-07T10:54:36.0607259Z #22 20.01 * DONE (curl) 2025-08-07T10:54:36.1617705Z #22 20.02 begin installing package ‘prettyunits’ 2025-08-07T10:54:37.3182817Z -- 2025-08-07T10:54:37.3183453Z > importing cache manifest from apache/arrow-dev:r-rhub-ubuntu-clang-latest: 2025-08-07T10:54:37.3184077Z -- 2025-08-07T16:53:06.6114074Z ##[error]The operation was canceled. ``` -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
Re: [PR] GH-47205: [R] Suppress GNU variadic macro warning from Thrift in package build [arrow]
thisisnic commented on PR #47206: URL: https://github.com/apache/arrow/pull/47206#issuecomment-3167094670 > I think that the "importing ..." message isn't the real problem. > > I think that "png" install failure is the real problem: > > https://github.com/ursacomputing/crossbow/actions/runs/16802437902/job/47586721783#step:5:2076 > > ``` > #22 104.3 make: *** [Makefile:96: png.ts] Error 1 > ``` > > BTW, how about suppressing these warnings in C++? #47286 Thanks for looking into this @kou, agreed it makes sense to do it in the C++, so I'll update this PR to be a CI update only for us to see if we can reproduce those failures. -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
Re: [PR] GH-47205: [R] Suppress GNU variadic macro warning from Thrift in package build [arrow]
kou commented on code in PR #47206: URL: https://github.com/apache/arrow/pull/47206#discussion_r2261968563 ## ci/scripts/r_docker_configure.sh: ## @@ -75,5 +75,15 @@ fi # cmake is now a listed sys req. $PACKAGE_MANAGER install -y rsync cmake curl +# Update clang version to latest available +if [ "$R_UPDATE_CLANG" = true ]; then + apt update -y && + apt install -y gnupg && + curl -fsSL https://apt.llvm.org/llvm-snapshot.gpg.key | gpg --dearmor -o /etc/apt/trusted.gpg.d/llvm.gpg && + echo "deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy-20 main" > /etc/apt/sources.list.d/llvm20.list && + apt update -y && Review Comment: We don't need `&&` here because we have `set -e` in this script: ```suggestion apt update -y apt install -y gnupg curl -fsSL https://apt.llvm.org/llvm-snapshot.gpg.key | gpg --dearmor -o /etc/apt/trusted.gpg.d/llvm.gpg echo "deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy-20 main" > /etc/apt/sources.list.d/llvm20.list apt update -y ``` -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
Re: [PR] GH-47205: [R] Suppress GNU variadic macro warning from Thrift in package build [arrow]
thisisnic commented on PR #47206: URL: https://github.com/apache/arrow/pull/47206#issuecomment-3163715359 I'm trying to update to clang 20.1.8 which I've now done successfully but the builds keep timing out, hanging on the line [`" > importing cache manifest from apache/arrow-dev:r-rhub-clang20-latest:"`](https://github.com/ursacomputing/crossbow/actions/runs/16802437902/job/47586721783#step:5:2079) If I look here for that tag, it doesn't exist: https://hub.docker.com/r/apache/arrow-dev/tags?name=r-rhub-clang20 @jonkeane, @kou; any ideas what happening here? I'm not sure what to try next -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
Re: [PR] GH-47205: [R] Suppress GNU variadic macro warning from Thrift in package build [arrow]
github-actions[bot] commented on PR #47206: URL: https://github.com/apache/arrow/pull/47206#issuecomment-3163558329 Revision: 4aeaa4788b98647c9f631fc29e7e9a6930a147c3 Submitted crossbow builds: [ursacomputing/crossbow @ actions-02e84501a6](https://github.com/ursacomputing/crossbow/branches/all?query=actions-02e84501a6) |Task|Status| ||--| |test-r-linux-as-cran|[](https://github.com/ursacomputing/crossbow/tree/actions-02e84501a6-github-test-r-linux-as-cran)| -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
Re: [PR] GH-47205: [R] Suppress GNU variadic macro warning from Thrift in package build [arrow]
thisisnic commented on PR #47206: URL: https://github.com/apache/arrow/pull/47206#issuecomment-3163552395 @github-actions crossbow submit test-r-linux-as-cran -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
Re: [PR] GH-47205: [R] Suppress GNU variadic macro warning from Thrift in package build [arrow]
github-actions[bot] commented on PR #47206: URL: https://github.com/apache/arrow/pull/47206#issuecomment-3163573042 Revision: 8d128a1c5a7f651dd266998e13245b75cff4f3b0 Submitted crossbow builds: [ursacomputing/crossbow @ actions-ed2ce1cab5](https://github.com/ursacomputing/crossbow/branches/all?query=actions-ed2ce1cab5) |Task|Status| ||--| |test-r-linux-as-cran|[](https://github.com/ursacomputing/crossbow/actions/runs/16802437902/job/47586721794)| -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
Re: [PR] GH-47205: [R] Suppress GNU variadic macro warning from Thrift in package build [arrow]
thisisnic commented on PR #47206: URL: https://github.com/apache/arrow/pull/47206#issuecomment-3163566584 @github-actions crossbow submit test-r-linux-as-cran -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
Re: [PR] GH-47205: [R] Suppress GNU variadic macro warning from Thrift in package build [arrow]
github-actions[bot] commented on PR #47206: URL: https://github.com/apache/arrow/pull/47206#issuecomment-3145309226 Revision: 1ca1bb4f1a06f64e40f25f5888fb27ba1f0df966 Submitted crossbow builds: [ursacomputing/crossbow @ actions-63a823f662](https://github.com/ursacomputing/crossbow/branches/all?query=actions-63a823f662) |Task|Status| ||--| |test-r-linux-as-cran|[](https://github.com/ursacomputing/crossbow/actions/runs/16681495078/job/47221001333)| -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
Re: [PR] GH-47205: [R] Suppress GNU variadic macro warning from Thrift in package build [arrow]
thisisnic commented on PR #47206: URL: https://github.com/apache/arrow/pull/47206#issuecomment-3145304476 @github-actions crossbow submit test-r-linux-as-cran -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
Re: [PR] GH-47205: [R] Suppress GNU variadic macro warning from Thrift in package build [arrow]
github-actions[bot] commented on PR #47206: URL: https://github.com/apache/arrow/pull/47206#issuecomment-3141051881 Revision: 34fe9f833464f74dc06fee8390100c6e27472800 Submitted crossbow builds: [ursacomputing/crossbow @ actions-56b983a17d](https://github.com/ursacomputing/crossbow/branches/all?query=actions-56b983a17d) |Task|Status| ||--| |test-r-linux-as-cran|[](https://github.com/ursacomputing/crossbow/actions/runs/16657681998/job/47146735371)| -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
Re: [PR] GH-47205: [R] Suppress GNU variadic macro warning from Thrift in package build [arrow]
thisisnic commented on PR #47206: URL: https://github.com/apache/arrow/pull/47206#issuecomment-3141046426 @github-actions crossbow submit test-r-linux-as-cran -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
Re: [PR] GH-47205: [R] Suppress GNU variadic macro warning from Thrift in package build [arrow]
github-actions[bot] commented on PR #47206: URL: https://github.com/apache/arrow/pull/47206#issuecomment-3141014880 Revision: 3f0f798560c5386bdec394dff03a0d107e38060e Submitted crossbow builds: [ursacomputing/crossbow @ actions-0960e432cc](https://github.com/ursacomputing/crossbow/branches/all?query=actions-0960e432cc) |Task|Status| ||--| |test-r-linux-as-cran|[](https://github.com/ursacomputing/crossbow/actions/runs/16657436114/job/47145881042)| -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
Re: [PR] GH-47205: [R] Suppress GNU variadic macro warning from Thrift in package build [arrow]
thisisnic commented on PR #47206: URL: https://github.com/apache/arrow/pull/47206#issuecomment-3141009638 @github-actions crossbow submit test-r-linux-as-cran -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
Re: [PR] GH-47205: [R] Suppress GNU variadic macro warning from Thrift in package build [arrow]
github-actions[bot] commented on PR #47206: URL: https://github.com/apache/arrow/pull/47206#issuecomment-3140721121 Revision: 56063d16a744c3ade2b6af31149419262044b6ce Submitted crossbow builds: [ursacomputing/crossbow @ actions-d66a937570](https://github.com/ursacomputing/crossbow/branches/all?query=actions-d66a937570) |Task|Status| ||--| |test-r-linux-as-cran|[](https://github.com/ursacomputing/crossbow/actions/runs/16655323175/job/47138729256)| -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
Re: [PR] GH-47205: [R] Suppress GNU variadic macro warning from Thrift in package build [arrow]
thisisnic commented on PR #47206: URL: https://github.com/apache/arrow/pull/47206#issuecomment-3140713624 @github-actions crossbow submit test-r-linux-as-cran -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
Re: [PR] GH-47205: [R] Suppress GNU variadic macro warning from Thrift in package build [arrow]
github-actions[bot] commented on PR #47206: URL: https://github.com/apache/arrow/pull/47206#issuecomment-3139306592 Revision: d45f572e64485fe09cee8494c30d0eb5e41919cd Submitted crossbow builds: [ursacomputing/crossbow @ actions-7a25d92e15](https://github.com/ursacomputing/crossbow/branches/all?query=actions-7a25d92e15) |Task|Status| ||--| |test-r-linux-as-cran|[](https://github.com/ursacomputing/crossbow/actions/runs/16645947020/job/47106534025)| -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
Re: [PR] GH-47205: [R] Suppress GNU variadic macro warning from Thrift in package build [arrow]
thisisnic commented on PR #47206: URL: https://github.com/apache/arrow/pull/47206#issuecomment-3139300107 @github-actions crossbow submit test-r-linux-as-cran -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
Re: [PR] GH-47205: [R] Suppress GNU variadic macro warning from Thrift in package build [arrow]
github-actions[bot] commented on PR #47206: URL: https://github.com/apache/arrow/pull/47206#issuecomment-3139278906 Revision: 0b6b3d906d27df0bf141a1d955b82f91c6d8aa47 Submitted crossbow builds: [ursacomputing/crossbow @ actions-1805465535](https://github.com/ursacomputing/crossbow/branches/all?query=actions-1805465535) |Task|Status| ||--| |test-r-linux-as-cran|[](https://github.com/ursacomputing/crossbow/actions/runs/16645747126/job/47105876432)| -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
Re: [PR] GH-47205: [R] Suppress GNU variadic macro warning from Thrift in package build [arrow]
thisisnic commented on PR #47206: URL: https://github.com/apache/arrow/pull/47206#issuecomment-3139271371 @github-actions crossbow submit test-r-linux-as-cran -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
Re: [PR] GH-47205: [R] Suppress GNU variadic macro warning from Thrift in package build [arrow]
github-actions[bot] commented on PR #47206: URL: https://github.com/apache/arrow/pull/47206#issuecomment-3139223891 Revision: 126bb20a0b62413b1b5cc91775c036df95e04695 Submitted crossbow builds: [ursacomputing/crossbow @ actions-8045db6d79](https://github.com/ursacomputing/crossbow/branches/all?query=actions-8045db6d79) |Task|Status| ||--| |test-r-linux-as-cran|[](https://github.com/ursacomputing/crossbow/tree/actions-8045db6d79-github-test-r-linux-as-cran)| -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
Re: [PR] GH-47205: [R] Suppress GNU variadic macro warning from Thrift in package build [arrow]
thisisnic commented on PR #47206: URL: https://github.com/apache/arrow/pull/47206#issuecomment-3139217391 @github-actions crossbow submit test-r-linux-as-cran -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
