From 947a44c06500d8e593e7c0657780ae6962a57789 Mon Sep 17 00:00:00 2001 From: Paul Colby Date: Sun, 13 Oct 2024 19:36:07 +1100 Subject: [PATCH] Begin cleaning up the TCC code --- .github/workflows/build.yaml | 32 ++++++-------------------------- 1 file changed, 6 insertions(+), 26 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index bd7d0e2de..25a80b5f1 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -193,23 +193,6 @@ jobs: - { qt: '5.14.2', os: macos-15, cc: gcc } - { qt: '5.15.2', os: macos-14, cc: gcc } - { qt: '5.15.2', os: macos-15, cc: gcc } - # Exclude Qt 5.x and 6.2 with Clang on macOS 14+, since these have unit tests that hang on GitHub's runners. - #- { qt: '5.9.9', os: macos-14, cc: clang } # \todo Explore these hangs on a local macOS host, - #- { qt: '5.9.9', os: macos-15, cc: clang } # \todo because they might not be specific to GitHub. - #- { qt: '5.10.1', os: macos-14, cc: clang } - #- { qt: '5.10.1', os: macos-15, cc: clang } - #- { qt: '5.11.3', os: macos-14, cc: clang } - #- { qt: '5.11.3', os: macos-15, cc: clang } - #- { qt: '5.12.12', os: macos-14, cc: clang } - #- { qt: '5.12.12', os: macos-15, cc: clang } - #- { qt: '5.13.2', os: macos-14, cc: clang } - #- { qt: '5.13.2', os: macos-15, cc: clang } - #- { qt: '5.14.2', os: macos-14, cc: clang } - #- { qt: '5.14.2', os: macos-15, cc: clang } - #- { qt: '5.15.2', os: macos-14, cc: clang } - #- { qt: '5.15.2', os: macos-15, cc: clang } - #- { qt: '6.2.4', os: macos-14, cc: clang } - #- { qt: '6.2.4', os: macos-15, cc: clang } # Exclude Qt 5.10 with GCC on macOS. See https://bugreports.qt.io/browse/QTBUG-66585 - { qt: '5.10.1', cc: gcc } # Exclude Qt 6.x with GCC on macOS for now. See https://bugreports.qt.io/browse/QTBUG-107050 @@ -221,15 +204,6 @@ jobs: - { qt: '6.7.3', cc: gcc } - { qt: '6.8.0', cc: gcc } steps: - - run: sqlite3 "$HOME/Library/Application Support/com.apple.TCC/TCC.db" '.schema' - - if: matrix.os != 'macos-13' - run: > - sudo sqlite3 "$HOME/Library/Application Support/com.apple.TCC/TCC.db" "INSERT or REPLACE INTO access - ( service, client, client_type, auth_value, auth_reason, auth_version, flags ) VALUES - ( 'kTCCServiceBluetoothAlways', '/usr/local/opt/runner/provisioner/provisioner', 1, 2, 3, 1, 0 )" -# ( 'kTCCServiceBluetoothPeripheral', '/usr/local/opt/runner/provisioner/provisioner', 1, 2, 3, 1, 0 ), -# ( 'kTCCServiceBluetoothWhileInUse', '/usr/local/opt/runner/provisioner/provisioner', 1, 2, 3, 1, 0 )" - - run: sqlite3 "$HOME/Library/Application Support/com.apple.TCC/TCC.db" 'select * from access' - uses: actions/checkout@v4 - name: Install lcov run: brew install lcov @@ -294,6 +268,12 @@ jobs: "$RUNNER_TEMP/release/src/cli/dokit.app/Contents/MacOS/dokit" --version [[ '${{ matrix.os }}' == 'macos-13' && '${{ matrix.cc }}' == 'clang' ]] || "$RUNNER_TEMP/coverage/src/cli/dokit.app/Contents/MacOS/dokit" --version + - name: Grant Bluetooth permission + if: matrix.os != 'macos-13' && !startsWith(matrix.qt, '5') && !startsWith(matrix.qt, '6.2.') + run: > + sudo sqlite3 "$HOME/Library/Application Support/com.apple.TCC/TCC.db" "INSERT or REPLACE INTO access + ( service, client, client_type, auth_value, auth_reason, auth_version, flags ) VALUES + ( 'kTCCServiceBluetoothAlways', '/usr/local/opt/runner/provisioner/provisioner', 1, 2, 3, 1, 0 )" - name: Test run: | [[ '${{ matrix.os }}' == 'macos-13' && '${{ matrix.cc }}' == 'clang' ]] ||