From d2faaf6bb97da869563c52e9de9922b6e7b3266b Mon Sep 17 00:00:00 2001 From: Constrat <56174894+Constrat@users.noreply.github.com> Date: Sat, 13 Sep 2025 14:55:15 +0200 Subject: [PATCH] fix: move smoke testing working dir --- .github/workflows/smoke-testing.yml | 42 ++++++++++++++--------------- tools/SmokeTesting/run_tests.sh | 4 +-- 2 files changed, 23 insertions(+), 23 deletions(-) diff --git a/.github/workflows/smoke-testing.yml b/.github/workflows/smoke-testing.yml index 551d4a52de..20025c01fd 100644 --- a/.github/workflows/smoke-testing.yml +++ b/.github/workflows/smoke-testing.yml @@ -53,16 +53,16 @@ jobs: with: key: ${{ steps.cache_key.outputs.key }} path: | - ./install/AsstCaller.h - ./install/AsstPort.h - ./install/libc++.so.1 - ./install/libc++abi.so.1 - ./install/libfastdeploy_ppocr.so - ./install/libMaaCore.so - ./install/libonnxruntime.so.1 - ./install/libopencv_world4.so.411 - ./install/libunwind.so.1 - ./install/smoke_test + ./AsstCaller.h + ./AsstPort.h + ./libc++.so.1 + ./libc++abi.so.1 + ./libfastdeploy_ppocr.so + ./libMaaCore.so + ./libonnxruntime.so.1 + ./libopencv_world4.so.411 + ./libunwind.so.1 + ./smoke_test - name: Fetch submodules if: steps.smoke-cache.outputs.cache-hit != 'true' @@ -113,7 +113,7 @@ jobs: if: steps.smoke-cache.outputs.cache-hit != 'true' run: | mkdir -p install - cmake --install build --prefix install --config Debug + cmake --install build --prefix ./ --config Debug - name: Run tests run: | @@ -125,16 +125,16 @@ jobs: with: key: ${{ steps.cache_key.outputs.key }} path: | - ./install/AsstCaller.h - ./install/AsstPort.h - ./install/libc++.so.1 - ./install/libc++abi.so.1 - ./install/libfastdeploy_ppocr.so - ./install/libMaaCore.so - ./install/libonnxruntime.so.1 - ./install/libopencv_world4.so.411 - ./install/libunwind.so.1 - ./install/smoke_test + ./AsstCaller.h + ./AsstPort.h + ./libc++.so.1 + ./libc++abi.so.1 + ./libfastdeploy_ppocr.so + ./libMaaCore.so + ./libonnxruntime.so.1 + ./libopencv_world4.so.411 + ./libunwind.so.1 + ./smoke_test - name: Upload logs if: always() diff --git a/tools/SmokeTesting/run_tests.sh b/tools/SmokeTesting/run_tests.sh index 43784e4f22..ed046c14b5 100755 --- a/tools/SmokeTesting/run_tests.sh +++ b/tools/SmokeTesting/run_tests.sh @@ -4,12 +4,12 @@ set -e clients=("Official" "YoStarJP" "YoStarEN" "YoStarKR" "txwy") error_clients=() -log_dir="./install/debug" +log_dir="./debug" mkdir -p "$log_dir" declare -A pids for client in "${clients[@]}"; do - ./install/smoke_test "$client" > "$log_dir/asst_${client}.log" 2>&1 & + ./smoke_test "$client" > "$log_dir/asst_${client}.log" 2>&1 & pids["$client"]=$! done