File tree Expand file tree Collapse file tree 4 files changed +7
-2
lines changed Expand file tree Collapse file tree 4 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ LABEL org.opencontainers.image.source https://github.com/4paradigm/OpenMLDB
24
24
COPY ./*.sh /
25
25
26
26
RUN apt update -y && \
27
- apt install -y build-essential python3-dev openjdk-11-jdk flex doxygen lcov git && \
27
+ apt install -y build-essential python3-dev openjdk-11-jdk flex doxygen lcov git curl && \
28
28
apt clean cache && \
29
29
curl -Lo zookeeper.tar.gz https://archive.apache.org/dist/zookeeper/zookeeper-3.4.14/zookeeper-3.4.14.tar.gz && \
30
30
mkdir -p /deps/src && \
Original file line number Diff line number Diff line change @@ -56,6 +56,10 @@ function(compile_lib LIB_NAME DIR DEPEND_FILE_LIST)
56
56
set (FILE_STR_LIST "${FILE_STR_LIST} ${DEPEND_FILE_LIST} " )
57
57
string (REPLACE " " ";" FILE_LIST ${FILE_STR_LIST} )
58
58
add_library (${LIB_NAME} STATIC ${FILE_LIST} $<TARGET_OBJECTS:openmldb_proto>)
59
+ target_compile_options (${LIB_NAME} PRIVATE
60
+ $<$<COMPILE_LANGUAGE:CXX>:-Wno-error=nonnull>
61
+ $<$<COMPILE_LANGUAGE:C>:-Wno-error=nonnull>
62
+ )
59
63
endfunction (compile_lib)
60
64
61
65
set (TEST_LIBS
Original file line number Diff line number Diff line change 22
22
#include < algorithm>
23
23
#include < map>
24
24
#include < memory>
25
+ #include < optional>
25
26
#include < set>
26
27
#include < string>
27
28
#include < vector>
Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ set(MAKEOPTS "$ENV{MAKEOPTS}" CACHE STRING "Extra options to make")
76
76
message (STATUS "Install bundled dependencies into ${DEPS_INSTALL_DIR} " )
77
77
78
78
set (HYBRIDSQL_ASSERTS_HOME https://github.com/4paradigm/hybridsql-asserts)
79
- set (HYBRIDSQL_ASSERTS_VERSION 0.7.0 )
79
+ set (HYBRIDSQL_ASSERTS_VERSION 0.7.1 )
80
80
81
81
function (get_linux_lsb_release_information)
82
82
execute_process (COMMAND bash ${CMAKE_SOURCE_DIR} /get -lsb-release.sh
You can’t perform that action at this time.
0 commit comments