-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MINOR: [Java][CI] Fix grep for new nightlies versioning #14166
Conversation
@kou I missed to update this on the nightlies script, I've validated the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
+1
Benchmark runs are scheduled for baseline = 59b5728 and contender = 081b70b. 081b70b is a master commit associated with this PR. Results will be available as each benchmark for each run completes. |
I've noticed that the latest Java nightlies where not uploaded https://nightlies.apache.org/arrow/java/org/apache/arrow/arrow-c-data/. I missed to update the grep on this PR: apache#14135 I have now tested locally the bash script to validate the repo structure will now be generated correctly: ``` repo └── org └── apache └── arrow ├── arrow-algorithm │ ├── 10.0.0-SNAPSHOT │ │ ├── arrow-algorithm-10.0.0-SNAPSHOT.jar │ │ ├── arrow-algorithm-10.0.0-SNAPSHOT-javadoc.jar │ │ ├── arrow-algorithm-10.0.0-SNAPSHOT.pom │ │ ├── arrow-algorithm-10.0.0-SNAPSHOT-sources.jar │ │ └── arrow-algorithm-10.0.0-SNAPSHOT-tests.jar │ └── 2022-09-18 │ ├── arrow-algorithm-10.0.0-SNAPSHOT.jar │ ├── arrow-algorithm-10.0.0-SNAPSHOT-javadoc.jar │ ├── arrow-algorithm-10.0.0-SNAPSHOT.pom │ ├── arrow-algorithm-10.0.0-SNAPSHOT-sources.jar │ └── arrow-algorithm-10.0.0-SNAPSHOT-tests.jar ├── arrow-avro │ ├── 10.0.0-SNAPSHOT │ │ ├── arrow-avro-10.0.0-SNAPSHOT.jar │ │ ├── arrow-avro-10.0.0-SNAPSHOT-javadoc.jar │ │ ├── arrow-avro-10.0.0-SNAPSHOT.pom │ │ ├── arrow-avro-10.0.0-SNAPSHOT-sources.jar │ │ └── arrow-avro-10.0.0-SNAPSHOT-tests.jar │ └── 2022-09-18 │ ├── arrow-avro-10.0.0-SNAPSHOT.jar │ ├── arrow-avro-10.0.0-SNAPSHOT-javadoc.jar │ ├── arrow-avro-10.0.0-SNAPSHOT.pom │ ├── arrow-avro-10.0.0-SNAPSHOT-sources.jar │ └── arrow-avro-10.0.0-SNAPSHOT-tests.jar ... ``` Authored-by: Raúl Cumplido <[email protected]> Signed-off-by: Sutou Kouhei <[email protected]>
I've noticed that the latest Java nightlies where not uploaded https://nightlies.apache.org/arrow/java/org/apache/arrow/arrow-c-data/. I missed to update the grep on this PR: apache#14135 I have now tested locally the bash script to validate the repo structure will now be generated correctly: ``` repo └── org └── apache └── arrow ├── arrow-algorithm │ ├── 10.0.0-SNAPSHOT │ │ ├── arrow-algorithm-10.0.0-SNAPSHOT.jar │ │ ├── arrow-algorithm-10.0.0-SNAPSHOT-javadoc.jar │ │ ├── arrow-algorithm-10.0.0-SNAPSHOT.pom │ │ ├── arrow-algorithm-10.0.0-SNAPSHOT-sources.jar │ │ └── arrow-algorithm-10.0.0-SNAPSHOT-tests.jar │ └── 2022-09-18 │ ├── arrow-algorithm-10.0.0-SNAPSHOT.jar │ ├── arrow-algorithm-10.0.0-SNAPSHOT-javadoc.jar │ ├── arrow-algorithm-10.0.0-SNAPSHOT.pom │ ├── arrow-algorithm-10.0.0-SNAPSHOT-sources.jar │ └── arrow-algorithm-10.0.0-SNAPSHOT-tests.jar ├── arrow-avro │ ├── 10.0.0-SNAPSHOT │ │ ├── arrow-avro-10.0.0-SNAPSHOT.jar │ │ ├── arrow-avro-10.0.0-SNAPSHOT-javadoc.jar │ │ ├── arrow-avro-10.0.0-SNAPSHOT.pom │ │ ├── arrow-avro-10.0.0-SNAPSHOT-sources.jar │ │ └── arrow-avro-10.0.0-SNAPSHOT-tests.jar │ └── 2022-09-18 │ ├── arrow-avro-10.0.0-SNAPSHOT.jar │ ├── arrow-avro-10.0.0-SNAPSHOT-javadoc.jar │ ├── arrow-avro-10.0.0-SNAPSHOT.pom │ ├── arrow-avro-10.0.0-SNAPSHOT-sources.jar │ └── arrow-avro-10.0.0-SNAPSHOT-tests.jar ... ``` Authored-by: Raúl Cumplido <[email protected]> Signed-off-by: Sutou Kouhei <[email protected]>
I've noticed that the latest Java nightlies where not uploaded https://nightlies.apache.org/arrow/java/org/apache/arrow/arrow-c-data/. I missed to update the grep on this PR: #14135
I have now tested locally the bash script to validate the repo structure will now be generated correctly: