1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-22 08:16:42 +00:00

Disable Qt 6; try to reenable Xcode.

This commit is contained in:
Thomas Harte
2025-02-03 21:21:25 -05:00
parent 37bca96bde
commit 14d4c8accc
+37 -32
View File
@@ -1,18 +1,20 @@
name: Build
on: [pull_request]
jobs:
# build-mac-xcodebuild:
# name: Mac UI / xcodebuild / ${{ matrix.os }}
# strategy:
# matrix:
# os: [macos-13, macos-14, macos-15]
# runs-on: ${{ matrix.os }}
# steps:
# - name: Checkout
# uses: actions/checkout@v4
# - name: Make
# working-directory: OSBindings/Mac
# run: xcodebuild CODE_SIGN_IDENTITY=-
build-mac-xcodebuild:
name: Mac UI / xcodebuild / ${{ matrix.os }}
strategy:
matrix:
os: [macos-13, macos-14, macos-15]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Make
working-directory: OSBindings/Mac
run: xcodebuild
build-sdl-cmake:
name: SDL UI / cmake / ${{ matrix.os }}
strategy:
@@ -49,6 +51,7 @@ jobs:
esac
cmake -S. -Bbuild -DCLK_UI=SDL -DCMAKE_BUILD_TYPE=Release
cmake --build build -v -j"$jobs"
build-sdl-scons:
name: SDL UI / scons / ${{ matrix.os }}
strategy:
@@ -85,6 +88,7 @@ jobs:
jobs=1
esac
scons -j"$jobs"
build-qt5:
name: Qt 5 / ${{ matrix.os }}
strategy:
@@ -105,23 +109,24 @@ jobs:
run: |
qmake -o Makefile clksignal.pro
make
build-qt6:
name: Qt 6 / ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies
uses: jurplel/install-qt-action@v4
with:
version: '6.8'
archives: qtbase
- name: Make
working-directory: OSBindings/Qt
shell: bash
run: |
qmake -o Makefile clksignal.pro
make
# build-qt6:
# name: Qt 6 / ${{ matrix.os }}
# strategy:
# matrix:
# os: [ubuntu-latest]
# runs-on: ${{ matrix.os }}
# steps:
# - name: Checkout
# uses: actions/checkout@v4
# - name: Install dependencies
# uses: jurplel/install-qt-action@v4
# with:
# version: '6.8'
# archives: qtbase
# - name: Make
# working-directory: OSBindings/Qt
# shell: bash
# run: |
# qmake -o Makefile clksignal.pro
# make