From 9191fe5ad54a8c51c0b67c397622de32e9c1ffd0 Mon Sep 17 00:00:00 2001 From: Eddy Ashton Date: Fri, 6 Dec 2024 15:02:46 +0000 Subject: [PATCH] Fix TPCC build, add scheduled Bencher runs (#6692) Co-authored-by: Amaury Chamayou --- .github/workflows/bencher.yml | 2 ++ src/apps/tpcc/app/tpcc.cpp | 1 + 2 files changed, 3 insertions(+) diff --git a/.github/workflows/bencher.yml b/.github/workflows/bencher.yml index 0360c49b8a4a..ac959e9b665c 100644 --- a/.github/workflows/bencher.yml +++ b/.github/workflows/bencher.yml @@ -1,6 +1,8 @@ name: "Bencher: Run Benchmarks" on: + schedule: + - cron: "0 0 * * 0" push: branches: - main diff --git a/src/apps/tpcc/app/tpcc.cpp b/src/apps/tpcc/app/tpcc.cpp index 5ac488f10fe7..d4e8c10b89da 100644 --- a/src/apps/tpcc/app/tpcc.cpp +++ b/src/apps/tpcc/app/tpcc.cpp @@ -4,6 +4,7 @@ #include "../tpcc_serializer.h" #include "ccf/app_interface.h" #include "ccf/common_auth_policies.h" +#include "ccf/ds/logger.h" #include "tpcc_setup.h" #include "tpcc_tables.h" #include "tpcc_transactions.h"