Skip to content

Commit a6092ab

Browse files
committed
Increase macos deployment target
1 parent e1adffc commit a6092ab

2 files changed

Lines changed: 3 additions & 6 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
${{ github.workspace }}/packages/*.sha256
6666
6767
macos-build:
68-
runs-on: macos-13
68+
runs-on: macos-14
6969
strategy:
7070
fail-fast: false
7171
matrix:
@@ -76,8 +76,6 @@ jobs:
7676
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
7777
with:
7878
submodules: recursive
79-
- name: Select Xcode version
80-
run: sudo xcode-select --switch /Applications/Xcode_14.3.1.app
8179
- name: Create Build Directory
8280
run: cmake -E make_directory ${{ github.workspace }}/build ${{ github.workspace }}/packages
8381
- name: Generating Build Scripts
@@ -87,7 +85,6 @@ jobs:
8785
run: cmake --build . --config RelWithDebInfo --verbose --target all --target waf_test -j $(getconf _NPROCESSORS_ONLN)
8886
working-directory: ${{ github.workspace }}/build
8987
- name: Test
90-
if: matrix.arch == 'x86_64'
9188
run: ${{ github.workspace }}/build/tests/waf_test
9289
working-directory: ${{ github.workspace }}/tests
9390
- name: Build Packages
@@ -107,7 +104,7 @@ jobs:
107104
${{ github.workspace }}/packages/*.sha256
108105
109106
macos-universal-package:
110-
runs-on: macos-13
107+
runs-on: macos-14
111108
needs: [macos-build]
112109
steps:
113110
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ string(STRIP "${version}" version)
66
string(REGEX REPLACE "-(alpha|beta)[0-9]*$" "" mmp_version ${version})
77

88
if (APPLE)
9-
set(CMAKE_OSX_DEPLOYMENT_TARGET "12.7" CACHE STRING "Minimum OS X deployment version")
9+
set(CMAKE_OSX_DEPLOYMENT_TARGET "14.3" CACHE STRING "Minimum OS X deployment version")
1010
endif()
1111

1212
project(libddwaf VERSION "${mmp_version}")

0 commit comments

Comments
 (0)