Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "ci: drop macos debug build" #12099

Merged
merged 1 commit into from
Mar 12, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@ jobs:
os: macos-latest
container:
useSonarCloud:
- name: macos-clang-arm64-debug
target: macos-clang-arm64-debug
os: macos-latest
container:
useSonarCloud:
- name: linux-gcc-x86_64
target: linux-64-gcc
os: ubuntu-latest
Expand Down Expand Up @@ -135,6 +140,12 @@ jobs:
- name: Build
if: ${{ !matrix.useSonarCloud }}
run: |
if ("${{ matrix.target }}" -eq "macos-64-clang-debug" ) {
# https://api.kde.org/ecm/module/ECMEnableSanitizers.html
# address;leak;undefined
# clang: error: unsupported option '-fsanitize=leak' for target 'x86_64-apple-darwin21.6.0'
& "${env:GITHUB_WORKSPACE}/.github/workflows/.craft.ps1" -c --set args="-DECM_ENABLE_SANITIZERS='address;undefined'" owncloud/owncloud-client
}
if ("${{ matrix.target }}" -eq "linux-64-gcc" ) {
# build with appimage updater and others
& "${env:GITHUB_WORKSPACE}/.github/workflows/.craft.ps1" -c --set enableAppImageUpdater=true owncloud-client
Expand Down