From 348343e907cade5647ec1eb995e87bb4fae97755 Mon Sep 17 00:00:00 2001 From: Mitchell O'Sullivan Date: Thu, 29 Jun 2023 14:30:44 +1000 Subject: [PATCH] Update workflow for changes in benchmark tooling Google's Benchmark project has rearranged some of the files we need for the testing workflows. This commit points pip towards to correct requirements.txt for the latest versions of the framework. --- .github/workflows/c-cpp.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index abdcb8d9..0f4c19de 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -84,7 +84,7 @@ jobs: run: | git clone https://github.com/google/benchmark.git cd benchmark - pip3 install -r requirements.txt + pip3 install -r tools/requirements.txt cmake -E make_directory "build" cmake -E chdir "build" cmake -DBENCHMARK_ENABLE_GTEST_TESTS=OFF -DBENCHMARK_ENABLE_TESTING=OFF -DCMAKE_BUILD_TYPE=Release ../ sudo cmake --build "build" --config Release --target install