From 23f54f39a821f970902ddbb23d3bcd896ac7412b Mon Sep 17 00:00:00 2001 From: wangyunlai Date: Thu, 20 Oct 2022 15:06:38 +0800 Subject: [PATCH] Update build.yml add cmake_prefix_path --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 05b7236..f6c9228 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -29,7 +29,7 @@ jobs: - name: Configure CMake # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make. # See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type - run: cmake -B ${{github.workspace}}/build -DENABLE_ASAN=ON + run: cmake -DCMAKE_PREFIX_PATH=${{github.workspace}}/local -B ${{github.workspace}}/build -DENABLE_ASAN=ON - name: Build # Build your program with the given configuration -- GitLab