Skip to content

Commit

Permalink
Updated workflows to add testing
Browse files Browse the repository at this point in the history
  • Loading branch information
MaximePouce committed Apr 11, 2024
1 parent 614929c commit 57725a3
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
5 changes: 5 additions & 0 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
3 changes: 3 additions & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 57725a3

Please sign in to comment.