Kdesktop 735 enhance the log sender #263
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Linux kDrive desktop CI on x64 Arch | |
on: | |
pull_request: | |
types: [synchronize, review_requested] | |
concurrency: | |
group: linux-${{ github.head_ref }} | |
cancel-in-progress: true | |
jobs: | |
build-kDrive: | |
runs-on: [ self-hosted, Linux, X64, desktop-kdrive ] | |
steps: | |
- name: Checkout the PR | |
uses: actions/checkout@v4.1.1 | |
with: | |
submodules: recursive | |
- name: Grant building script execute permission | |
run : chmod +x ./infomaniak-build-tools/linux/build-ci-amd64.sh | |
- 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 |