[KDESKTOP-744] CMake update to use RelWithDebInfo #159
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: MacOS kDrive desktop CI | |
on: | |
pull_request: | |
types: [synchronize, review_requested] | |
concurrency: | |
group: macos-${{ github.head_ref }} | |
cancel-in-progress: true | |
jobs: | |
build-kDrive: | |
runs-on: [ self-hosted, macOS, desktop-kdrive ] | |
steps: | |
- name: Checkout the code | |
uses: actions/checkout@v4.1.1 | |
with: | |
submodules: recursive | |
- name: Unlock keychain to use the certificate | |
run : security unlock-keychain -p '${{ secrets.KEYCHAIN_PASSWORD }}' login.keychain | |
- name: Grant building script execute permission | |
run : chmod +x ./infomaniak-build-tools/macos/build-ci.sh | |
- name: Build kDrive desktop | |
run : ./infomaniak-build-tools/macos/build-ci.sh | |
- name: Execute common tests | |
run : ./build-macos/client/bin/kDrive_test_common | |
- name: Clean-up generated code | |
run : rm -rf build-macos |