Skip to content

Fix size of splitter widget in dialogs #1018

Fix size of splitter widget in dialogs

Fix size of splitter widget in dialogs #1018

Workflow file for this run

---
name: macOS Build
# yamllint disable-line rule:truthy
on:
- push
jobs:
build:
name: ${{matrix.buildname}}
runs-on: ${{matrix.os}}
strategy:
matrix:
include:
- os: macos-11
buildname: macOS 10.15
build_type: Release
compiler: clang_64
create_bundle: true
steps:
- name: Checkout source code
uses: actions/checkout@v2
with:
submodules: false
fetch-depth: 1
- name: Install dependencies
run: '${{github.workspace}}/utils/github/install-macos.sh'
- name: Build with CMake
uses: lukka/run-cmake@v3
with:
cmakeListsOrSettingsJson: CMakeListsTxtAdvanced
cmakeListsTxtPath: '${{github.workspace}}/CMakeLists.txt'
cmakeBuildType: Release
cmakeGenerator: Ninja
buildDirectory: '${{runner.workspace}}/build'
cmakeAppendedArgs: >-
-DWITH_TESTS=TRUE
-DCMAKE_BUILD_TYPE='${{matrix.build_type}}'
-DCMAKE_PREFIX_PATH="/usr/local/opt/qt@5/lib/cmake"
-DCMAKE_OSX_DEPLOYMENT_TARGET='10.15'
-DCMAKE_CXX_FLAGS="-Wno-deprecated-declarations"
- name: Create gnupg directory for tests
run: mkdir -p ~/.gnupg
- name: Create macOS bundle
if: matrix.create_bundle
working-directory: '${{runner.workspace}}/build'
run: '${{github.workspace}}/utils/github/bundle-macos.sh'
- name: Upload macOS bundle
if: matrix.create_bundle
uses: actions/upload-artifact@v2
with:
name: CopyQ.dmg
path: '${{runner.workspace}}/build/CopyQ.dmg'