From 03e771e5f3ff196f06725f8aa2a4bafb17324c3c Mon Sep 17 00:00:00 2001 From: Vijai Kumar S Date: Tue, 21 May 2024 19:33:17 +0530 Subject: [PATCH] Some fixes --- .github/workflows/build.yml | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 37a159d48..02768994a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -407,13 +407,7 @@ jobs: sh latest_lib3mf_sdk/Examples/CppDynamic/GenerateMake.sh cd latest_lib3mf_sdk/Examples/CppDynamic/build cmake --build . - echo "First Debug" - ls -al ../../ - echo "Second Debug" - ls -al ../../../ - echo "Following script will fail" - cp * ../../../test_suites/ - cp *.so ../../../test_suites/ || true + cp -r * ../../../../test_suites/ - name: Run integration tests with latest SDK run: | @@ -429,8 +423,7 @@ jobs: sh second_latest_lib3mf_sdk/Examples/CppDynamic/GenerateMake.sh cd second_latest_lib3mf_sdk/Examples/CppDynamic/build cmake --build . - cp * ../../../test_suites/ - cp *.so ../../../test_suites/ || true + cp -r * ../../../../test_suites/ - name: Run integration tests with second latest SDK run: |