Skip to content

Commit

Permalink
MacOS: Added support for MacOS13
Browse files Browse the repository at this point in the history
  • Loading branch information
foldynl committed May 31, 2024
1 parent adc7a04 commit b10302a
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,15 @@ name: CI Linux/macOS
on:
push:
branches:
- 'testing_*'
- '*'
pull_request:
branches:
- 'testing_*'
- master
jobs:
ubuntu-build-qt5:
name: Ubuntu CI QT5
if: false
strategy:
matrix:
os: [ubuntu-20.04, ubuntu-22.04]
Expand All @@ -33,6 +34,7 @@ jobs:

ubuntu-build-qt6:
name: Ubuntu CI QT6
if: false
strategy:
matrix:
os: [ubuntu-22.04]
Expand All @@ -55,7 +57,11 @@ jobs:

macos-build:
name: MacOS CI
runs-on: macos-12
strategy:
matrix:
os: [macos-13]

runs-on: ${{ matrix.os }}

steps:
- name: Install dependencies
Expand All @@ -82,7 +88,7 @@ jobs:
mkdir build
cd build
qmake6 -config release ..
make -j2
make -j4
- name: Build dmg
run: |
cd build
Expand Down

0 comments on commit b10302a

Please sign in to comment.