Skip to content

Commit 01899a2

Browse files
committed
update(cmake): bump libs and driver to 0.18.0-rc2.
Moreover, bumped falcoctl to v0.10.0 and rules to 3.2.0. Signed-off-by: Federico Di Pierro <[email protected]>
1 parent 037d7f9 commit 01899a2

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

cmake/modules/driver.cmake

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ else()
3434
# In case you want to test against another driver version (or branch, or commit) just pass the variable -
3535
# ie., `cmake -DDRIVER_VERSION=dev ..`
3636
if(NOT DRIVER_VERSION)
37-
set(DRIVER_VERSION "0.18.0-rc1")
38-
set(DRIVER_CHECKSUM "SHA256=9b0b7795c952806217358b921ed6fb46e1d32cd46403ef1870077caf0a196d93")
37+
set(DRIVER_VERSION "0.18.0-rc2")
38+
set(DRIVER_CHECKSUM "SHA256=e016ee1113eb5a14c85d9c4828244f5fba37cd663ecd38f5b58fbc4142348782")
3939
endif()
4040

4141
# cd /path/to/build && cmake /path/to/source

cmake/modules/falcoctl.cmake

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,16 @@ option(ADD_FALCOCTL_DEPENDENCY "Add falcoctl dependency while building falco" ON
1919
if(ADD_FALCOCTL_DEPENDENCY)
2020
string(TOLOWER ${CMAKE_HOST_SYSTEM_NAME} FALCOCTL_SYSTEM_NAME)
2121

22-
set(FALCOCTL_VERSION "0.10.0-rc1")
22+
set(FALCOCTL_VERSION "0.10.0")
2323

2424
message(STATUS "Building with falcoctl: ${FALCOCTL_VERSION}")
2525

2626
if(${CMAKE_HOST_SYSTEM_PROCESSOR} STREQUAL "x86_64")
2727
set(FALCOCTL_SYSTEM_PROC_GO "amd64")
28-
set(FALCOCTL_HASH "efef3b6912837622ec1822941643d67d7b8ba704ba759751a17491b7f9fd05c3")
28+
set(FALCOCTL_HASH "32d1be4ab2335d9c3fc8ae8900341bcc26d3166094fc553ddb7bb783aa6c7b68")
2929
else() # aarch64
3030
set(FALCOCTL_SYSTEM_PROC_GO "arm64")
31-
set(FALCOCTL_HASH "0429782ae5dc46ff8611a5f6ab2c275d8dd0e0721937ace0e8f6abc23de9dd57")
31+
set(FALCOCTL_HASH "9186fd948c1230c338a7fa36d6569ce85d3c4aa8153b30e8d86d2e887eb76756")
3232
endif()
3333

3434
ExternalProject_Add(

cmake/modules/falcosecurity-libs.cmake

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ else()
3535
# In case you want to test against another falcosecurity/libs version (or branch, or commit) just pass the variable -
3636
# ie., `cmake -DFALCOSECURITY_LIBS_VERSION=dev ..`
3737
if(NOT FALCOSECURITY_LIBS_VERSION)
38-
set(FALCOSECURITY_LIBS_VERSION "0.18.0-rc1")
39-
set(FALCOSECURITY_LIBS_CHECKSUM "SHA256=9b0b7795c952806217358b921ed6fb46e1d32cd46403ef1870077caf0a196d93")
38+
set(FALCOSECURITY_LIBS_VERSION "0.18.0-rc2")
39+
set(FALCOSECURITY_LIBS_CHECKSUM "SHA256=e016ee1113eb5a14c85d9c4828244f5fba37cd663ecd38f5b58fbc4142348782")
4040
endif()
4141

4242
# cd /path/to/build && cmake /path/to/source

cmake/modules/rules.cmake

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ include(ExternalProject)
1717

1818
if(NOT DEFINED FALCOSECURITY_RULES_FALCO_PATH)
1919
# falco_rules.yaml
20-
set(FALCOSECURITY_RULES_FALCO_VERSION "falco-rules-3.1.0")
21-
set(FALCOSECURITY_RULES_FALCO_CHECKSUM "SHA256=3b617920c0b66128627613e591a954eb9572747a4c287bc13b53b38786250162")
20+
set(FALCOSECURITY_RULES_FALCO_VERSION "falco-rules-3.2.0")
21+
set(FALCOSECURITY_RULES_FALCO_CHECKSUM "SHA256=a0cbf8aec65959bdd4661c549bdbdcd8acae6ca70e3545c4102fc4c50592d5bf")
2222
set(FALCOSECURITY_RULES_FALCO_PATH "${PROJECT_BINARY_DIR}/falcosecurity-rules-falco-prefix/src/falcosecurity-rules-falco/falco_rules.yaml")
2323
ExternalProject_Add(
2424
falcosecurity-rules-falco

0 commit comments

Comments
 (0)