Fix showing tab tree labels in Qt 6.7.0 #1490
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 Build | |
# yamllint disable-line rule:truthy | |
on: | |
- push | |
jobs: | |
build: | |
name: ${{matrix.buildname}} | |
runs-on: ${{matrix.os}} | |
strategy: | |
matrix: | |
include: | |
- os: macos-12 | |
buildname: macOS 10.15 | |
bundle_suffix: '-macos-10' | |
cmake_preset: macOS-10 | |
- os: macos-14 | |
buildname: macOS 12 M1 | |
bundle_suffix: '-macos-12-m1' | |
cmake_preset: macOS-12-m1 | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v4 | |
with: | |
submodules: false | |
fetch-depth: 1 | |
- name: Enable ccache | |
uses: hendrikmuhs/ccache-action@v1.2 | |
with: | |
key: ${{ github.job }}-${{ matrix.os }} | |
- name: Set up ccache | |
run: | | |
export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH" | |
- name: Install dependencies | |
env: | |
HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK: 1 | |
HOMEBREW_NO_AUTO_UPDATE: 1 | |
HOMEBREW_NO_INSTALL_CLEANUP: 1 | |
run: '${{github.workspace}}/utils/github/install-macos.sh' | |
- name: Build with CMake | |
uses: lukka/run-cmake@v10 | |
with: | |
configurePreset: '${{ matrix.cmake_preset }}' | |
buildPreset: '${{ matrix.cmake_preset }}' | |
- name: Create gnupg directory for tests | |
run: mkdir -p ~/.gnupg && chmod go-rwx ~/.gnupg | |
- name: Create macOS bundle | |
working-directory: '${{runner.workspace}}/build' | |
run: '${{github.workspace}}/utils/github/bundle-macos.sh' | |
- name: Upload macOS bundle | |
uses: actions/upload-artifact@v4 | |
with: | |
name: 'CopyQ${{ matrix.bundle_suffix }}.dmg' | |
path: '${{runner.workspace}}/build/CopyQ.dmg' |