diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 20110322b..d8ac94d11 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -23,5 +23,10 @@ jobs: - name: Build kDrive desktop run : ./infomaniak-build-tools/linux/build-ci-amd64.sh + - name: Grant test_common execute permission + run : chmod +x ./build-linux/build/bin/kDrive_test_common + - name: Execute common tests + run : ./build-linux/build/bin/kDrive_test_common + - name: Clean-up generated code run : rm -rf build-linux diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index b0cc887d7..c1f1bdd43 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -26,5 +26,10 @@ jobs: - name: Build kDrive desktop run : ./infomaniak-build-tools/macos/build-ci.sh + - name: Grant test_common execute permission + run : chmod +x ./build-macos/build/bin/kDrive_test_common + - name: Execute common tests + run : ./build-macos/build/bin/kDrive_test_common + - name: Clean-up generated code run : rm -rf build-macos diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 2a5a0e17e..caaad3f94 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -38,5 +38,8 @@ jobs: powershell ./infomaniak-build-tools/windows/build-drive.ps1 -ci shell: cmd + - name: Run common tests + run: & "./build-Release/install/bin/kDrive_test_common.exe" + - name: Clean-up generated code run : powershell ./infomaniak-build-tools/windows/build-drive.ps1 -clean all