GH-47983: [CI][R] R nightly upload workflow failing for a few weeks#47984
Merged
thisisnic merged 2 commits intoapache:mainfrom Oct 31, 2025
Merged
GH-47983: [CI][R] R nightly upload workflow failing for a few weeks#47984thisisnic merged 2 commits intoapache:mainfrom
thisisnic merged 2 commits intoapache:mainfrom
Conversation
Member
Author
|
Last time this broke, we merged it and decided to check later if it worked as it's a pain to test first. Would someone mind approving/merging so we can test? CC @amoeba / @jonkeane / @kou / @assignUser Thanks! |
kou
approved these changes
Oct 29, 2025
Member
kou
left a comment
There was a problem hiding this comment.
+1
Sorry that #47727 didn't solve this...
BTW, it seems there is another error before file.copy:
https://github.com/apache/arrow/actions/runs/18877376041/job/53870697877#step:12:55
Error in c(sub("r-pkg", repo_root, current_pkg_path), sub("r-lib", paste0(repo_root, :
argument 3 is empty
We may need one more fix for it.
|
After merging your PR, Conbench analyzed the 0 benchmarking runs that have been run so far on merge-commit 8dd357d. None of the specified runs were found on the Conbench server. The full Conbench report has more details. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Rationale for this change
PR #47727 refactored the R nightly upload workflow to handle r-pkg and r-lib files separately, but we needed to update the variable name used by
file.copy(), causing the workflow to fail with "object 'current_path' not found" error.What changes are included in this PR?
Add
current_path <- c(current_pkg_path, current_lib_path)to combine the two path vectors before thefile.copy()call on line 145.Are these changes tested?
No
Are there any user-facing changes?
No