Skip to content

Commit 48fe07b

Browse files
authored
Update Github MacOS runner version to supported version #5
2 parents f0b601b + 67e670d commit 48fe07b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
jobs:
1212
build:
1313

14-
runs-on: macos-12
14+
runs-on: macos-13
1515

1616
steps:
1717
- uses: actions/checkout@v3

meson.build

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ curl_dep = dependency('libcurl')
1414

1515
# Added flag based on https://stackoverflow.com/a/37729971/319066
1616
# and arguments based on https://mesonbuild.com/Adding-arguments.html
17-
compiler_arguments = ['-mmacosx-version-min=10.12', '-isysroot', '/Library/Developer/CommandLineTools/SDKs/MacOSX12.sdk']
17+
compiler_arguments = ['-mmacosx-version-min=10.12', '-isysroot', '/Library/Developer/CommandLineTools/SDKs/MacOSX12.3.sdk']
1818
add_project_arguments(compiler_arguments , language : 'c')
1919
add_project_arguments(compiler_arguments, language : 'cpp')
2020

21-
linker_arguments = ['-mmacosx-version-min=10.12', '-isysroot', '/Library/Developer/CommandLineTools/SDKs/MacOSX12.sdk']
21+
linker_arguments = ['-mmacosx-version-min=10.12', '-isysroot', '/Library/Developer/CommandLineTools/SDKs/MacOSX12.3.sdk']
2222
add_project_link_arguments(linker_arguments, language : 'c')
2323
add_project_link_arguments(linker_arguments, language : 'cpp')
2424

0 commit comments

Comments
 (0)