From a3f632c73fc6c69e07e5f59021d078078c19b95d Mon Sep 17 00:00:00 2001 From: Zhang Jie <13131481+j-z10@users.noreply.github.com> Date: Wed, 9 Oct 2024 11:40:41 +0800 Subject: [PATCH] Update unittest.yml --- .github/workflows/unittest.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/unittest.yml b/.github/workflows/unittest.yml index 4990687..4ac53ee 100644 --- a/.github/workflows/unittest.yml +++ b/.github/workflows/unittest.yml @@ -52,8 +52,10 @@ jobs: mkdir build && cd build cmake .. && make && make test && sudo make install if [[ "$OSTYPE" == "linux-gnu"* ]]; then + echo "ldconfig..." sudo ldconfig elif [[ "$OSTYPE" == "darwin"* ]]; then + echo "updating dyld shared cache..." sudo update_dyld_shared_cache fi - name: Add nmake on windows