Skip to content

Commit 5270eca

Browse files
authored
Compress crypto_test_data.cc (#2123)
### Issues: Resolves: P189934541 ### Description of changes: * The size of `generated-src/crypto_test_data.cc` is approaching 100MB. This change generates the file into a compressed form. ### Call-outs: Updating scripts related to this files creation and validation. ### Testing: These changes are thoroughly covered by our CI. By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license and the ISC license.
1 parent 43a9f80 commit 5270eca

5 files changed

+57
-15274
lines changed

CMakeLists.txt

+5-1
Original file line numberDiff line numberDiff line change
@@ -982,7 +982,11 @@ if(BUILD_TESTING)
982982
DEPENDS util/embed_test_data.go ${CRYPTO_TEST_DATA}
983983
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
984984
else()
985-
file(COPY ${GENERATE_CODE_ROOT}/crypto_test_data.cc DESTINATION ${CMAKE_CURRENT_BINARY_DIR}/)
985+
add_custom_command(
986+
OUTPUT crypto_test_data.cc
987+
COMMAND ${CMAKE_COMMAND} -E tar "jxvf" ${GENERATE_CODE_ROOT}/crypto_test_data.cc.tar.bz2
988+
DEPENDS ${GENERATE_CODE_ROOT}/crypto_test_data.cc.tar.bz2
989+
WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}")
986990
endif()
987991
add_library(crypto_test_data OBJECT crypto_test_data.cc)
988992

0 commit comments

Comments
 (0)