Skip to content

Commit

Permalink
ci: try fixing qt5 builds on macos-14
Browse files Browse the repository at this point in the history
  • Loading branch information
Neverous committed Feb 8, 2024
1 parent a66eb0d commit 2aa44d7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 46 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
export CXX=g++
;;
esac;
cmake -DCMAKE_BUILD_TYPE=${{ inputs.build-config }} -DCMAKE_VERBOSE_MAKEFILE=ON -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache ..
cmake -DCMAKE_BUILD_TYPE=${{ inputs.build-config }} -DCMAKE_VERBOSE_MAKEFILE=ON -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache ${{ inputs.os == 'macos-14' && matrix.qt-version.startsWith('5') && '-DCMAKE_OSX_ARCHITECTURES="x86_64"' || '' }} ..
shell: bash
env:
BUILD_VERSION: ${{ inputs.version }}
Expand Down
46 changes: 1 addition & 45 deletions .github/workflows/debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,56 +13,12 @@ concurrency:
cancel-in-progress: true

jobs:
build-linux:
name: ${{ matrix.os }} with ${{ matrix.compiler }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, ubuntu-22.04]
compiler:
- Clang
- GCC

permissions:
actions: read
contents: read
security-events: write

uses: ./.github/workflows/build.yml
with:
os: ${{ matrix.os }}
compiler: ${{ matrix.compiler }}
build-config: Debug
version: ${{ github.sha }}

build-windows:
name: ${{ matrix.os }} with ${{ matrix.compiler }}
strategy:
fail-fast: false
matrix:
os: [windows-2019, windows-2022]
compiler:
- Clang
- MSVC

permissions:
actions: read
contents: read
security-events: write

uses: ./.github/workflows/build.yml
with:
os: ${{ matrix.os }}
compiler: ${{ matrix.compiler }}
build-config: Debug
version: ${{ github.sha }}

build-macos:
name: ${{ matrix.os }} with ${{ matrix.compiler }}
strategy:
fail-fast: false
matrix:
os: [macos-11, macos-12, macos-13, macos-14]
os: [macos-14]
compiler:
- Clang

Expand Down

0 comments on commit 2aa44d7

Please sign in to comment.