Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: bump Falco to latest libs version #2722

Merged
merged 5 commits into from Aug 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/reusable_build_packages.yaml
Expand Up @@ -49,7 +49,7 @@ jobs:
yum -y install centos-release-scl
yum -y install devtoolset-9-gcc devtoolset-9-gcc-c++
source /opt/rh/devtoolset-9/enable
yum install -y wget git make m4 rpm-build
yum install -y wget git make m4 rpm-build perl-IPC-Cmd

- name: Checkout
uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions cmake/modules/driver.cmake
Expand Up @@ -26,8 +26,8 @@ else()
# In case you want to test against another driver version (or branch, or commit) just pass the variable -
# ie., `cmake -DDRIVER_VERSION=dev ..`
if(NOT DRIVER_VERSION)
set(DRIVER_VERSION "5.1.0+driver")
set(DRIVER_CHECKSUM "SHA256=667efc38eaef76c1bbfa2d551c8a3a912f92b553c4efb793418c8b44340b99cf")
set(DRIVER_VERSION "aeff81476d0dcd3bfe7002e8642163b6bd11094e")
set(DRIVER_CHECKSUM "SHA256=b28f5e3335af8ebba9afa457ba1e687142a1399663cb23ddb133e5c72a7b206a")
endif()

# cd /path/to/build && cmake /path/to/source
Expand Down
4 changes: 2 additions & 2 deletions cmake/modules/falcosecurity-libs.cmake
Expand Up @@ -27,8 +27,8 @@ else()
# In case you want to test against another falcosecurity/libs version (or branch, or commit) just pass the variable -
# ie., `cmake -DFALCOSECURITY_LIBS_VERSION=dev ..`
if(NOT FALCOSECURITY_LIBS_VERSION)
set(FALCOSECURITY_LIBS_VERSION "0.12.0")
set(FALCOSECURITY_LIBS_CHECKSUM "SHA256=26028d2e2141e17b6c7f28577d62c484335475fec8eef0ce088c97eab4dabe13")
set(FALCOSECURITY_LIBS_VERSION "aeff81476d0dcd3bfe7002e8642163b6bd11094e")
set(FALCOSECURITY_LIBS_CHECKSUM "SHA256=b28f5e3335af8ebba9afa457ba1e687142a1399663cb23ddb133e5c72a7b206a")
endif()

# cd /path/to/build && cmake /path/to/source
Expand Down
2 changes: 1 addition & 1 deletion submodules/falcosecurity-testing
4 changes: 2 additions & 2 deletions userspace/engine/falco_engine_version.h
Expand Up @@ -15,12 +15,12 @@ limitations under the License.
*/

// The version of this Falco engine.
#define FALCO_ENGINE_VERSION (20)
#define FALCO_ENGINE_VERSION (21)

// This is the result of running the following command:
// FALCO="falco -c ./falco.yaml"
// echo $($FALCO --version | grep 'Engine:' | awk '{print $2}') $(echo $($FALCO --version | grep 'Schema version:' | awk '{print $3}') $($FALCO --list --markdown | grep '^`' | sort) $($FALCO --list-syscall-events | sort) | sha256sum)
// It represents the fields supported by this version of Falco,
// the event types, and the underlying driverevent schema. It's used to
// detetect changes in engine version in our CI jobs.
#define FALCO_ENGINE_CHECKSUM "38ef1ec34930828880c6d86527ccbf5aff6673935cbfcb968d21bd809d101bcb"
#define FALCO_ENGINE_CHECKSUM "41dc03aebd3dd09e1aaaa1bb25055b65902c7c61c180cb9486d1d9850d18d67b"