This patch adds ASAN and UBSAN GitHub action tests for both the userspace and kernel datapaths.
Signed-off-by: Eelco Chaudron <[email protected]> --- .github/workflows/build-and-test.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 1b9dc4ef3..7a90a30ab 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -172,6 +172,15 @@ jobs: testsuite: check-kernel test_range: "100-" + - compiler: clang + sanitizers: address,undefined + testsuite: check-kernel + test_range: "-100" + - compiler: clang + sanitizers: address,undefined + testsuite: check-kernel + test_range: "100-" + - compiler: gcc testsuite: check-offloads test_range: "-100" @@ -183,6 +192,11 @@ jobs: dpdk: dpdk testsuite: check-system-userspace + - compiler: clang + sanitizers: address,undefined + dpdk: dpdk + testsuite: check-system-userspace + - compiler: gcc dpdk: dpdk testsuite: check-system-tso -- 2.43.0 _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
