From d9c0d24e58601df0b77c4828e62ed8538ee989c7 Mon Sep 17 00:00:00 2001 From: Andrew Noyes Date: Tue, 5 Mar 2024 12:34:35 -0800 Subject: [PATCH] Don't run benchmarks in jenkins It's probably too noisy and I don't even look anyway --- Jenkinsfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index d8d6ec2..f0eac6f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -13,8 +13,6 @@ def CleanBuildAndTest(String cmakeArgs) { cd build ctest --no-compress-output --test-output-size-passed 100000 --test-output-size-failed 100000 -T Test -j `nproc` --timeout 90 zstd Testing/*/Test.xml - LD_LIBRARY_PATH=skip_list ./conflict_set_bench - LD_LIBRARY_PATH=radix_tree ./conflict_set_bench ''' } xunit tools: [CTest(pattern: 'build/Testing/*/Test.xml')], reduceLog: false, skipPublishingChecks: false