sunchao commented on pull request #11669: URL: https://github.com/apache/arrow/pull/11669#issuecomment-965887786
Oh sorry. You'll also need to **close** the repository. Afterwards, it will show up under this URL https://repository.apache.org/content/repositories (in your case, https://repository.apache.org/content/repositories/orgapachearrow-1067). Usually we just download the artifacts and verify the checksum & signature of them. Downstream projects can also add the release candidate in their dependencies and test it out. For Maven, they can add the following in `pom.xml` (and similarly for others project management tools): ``` <repository> <id>staged</id> <name>staged-releases</name> <url>https://repository.apache.org/content/repositories/staging/</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> ``` Other tests are done in the source repo itself, for instance, run all the unit tests & integration tests. > Our .jars built by Crossbow already bundle native shared libraries. For example, https://apache.jfrog.io/artifactory/arrow/java-rc/6.0.1-rc1/arrow-c-data-6.0.1.jar bundles libarrow_cdata_jni.so and libarrow_cdata_jni.dylib. This is great. I think it should be fine then. -- 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]
