mirror of https://github.com/facebook/rocksdb.git
Remove build dependencies for java tests. (#12021)
Summary: Final fix for https://github.com/facebook/rocksdb/issues/12013 - Reverting back changes on CirleCI explicit image declaration. - Removed CMake dependencies between java classed and java test classes. Pull Request resolved: https://github.com/facebook/rocksdb/pull/12021 Reviewed By: akankshamahajan15 Differential Revision: D50745392 Pulled By: ajkr fbshipit-source-id: 6a7a1da1e7e4da8da72130c9272915974e10fffc
This commit is contained in:
parent
60df39e530
commit
b3fd3838d4
|
@ -600,7 +600,6 @@ jobs:
|
|||
build-windows-vs2019:
|
||||
executor:
|
||||
name: win/server-2019
|
||||
version: 2023.08.1
|
||||
size: 2xlarge
|
||||
environment:
|
||||
THIRDPARTY_HOME: C:/Users/circleci/thirdparty
|
||||
|
|
|
@ -557,13 +557,12 @@ else ()
|
|||
|
||||
endif()
|
||||
|
||||
get_target_property(ROCKSDBJNI_CLASSES_JAR_FILE rocksdbjni_classes JAR_FILE)
|
||||
add_jar(
|
||||
rocksdbjni_test_classes
|
||||
SOURCES
|
||||
${JAVA_MAIN_CLASSES}
|
||||
${JAVA_TEST_CLASSES}
|
||||
INCLUDE_JARS ${ROCKSDBJNI_CLASSES_JAR_FILE} ${JAVA_TESTCLASSPATH}
|
||||
INCLUDE_JARS ${JAVA_TESTCLASSPATH}
|
||||
GENERATE_NATIVE_HEADERS rocksdbjni_test_headers DESTINATION ${JNI_OUTPUT_DIR}
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in New Issue