Skip to content

Commit 51cb101

Browse files
committed
Bump minimum required macosx version to 10.15
This is required because the auto-update uses the function warning: 'openApplicationAtURL:configuration:completionHandler:' is only available on macOS 10.15 or newer [-Wunguarded-availability-new]
1 parent 32a2465 commit 51cb101

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/publish-go-tester-task.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -132,9 +132,9 @@ jobs:
132132

133133
- name: Build the Agent for macos
134134
env:
135-
MACOSX_DEPLOYMENT_TARGET: 10.11 # minimum supported version for mac
136-
CGO_CFLAGS: -mmacosx-version-min=10.11
137-
CGO_LDFLAGS: -mmacosx-version-min=10.11
135+
MACOSX_DEPLOYMENT_TARGET: 10.15 # minimum supported version for mac
136+
CGO_CFLAGS: -mmacosx-version-min=10.15
137+
CGO_LDFLAGS: -mmacosx-version-min=10.15
138138
run: task go:build
139139
if: runner.os == 'macOS'
140140

.github/workflows/release.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -112,9 +112,9 @@ jobs:
112112

113113
- name: Build the Agent for macos
114114
env:
115-
MACOSX_DEPLOYMENT_TARGET: 10.11 # minimum supported version for mac
116-
CGO_CFLAGS: -mmacosx-version-min=10.11
117-
CGO_LDFLAGS: -mmacosx-version-min=10.11
115+
MACOSX_DEPLOYMENT_TARGET: 10.15 # minimum supported version for mac
116+
CGO_CFLAGS: -mmacosx-version-min=10.15
117+
CGO_LDFLAGS: -mmacosx-version-min=10.15
118118
run: task go:build
119119
if: matrix.os == 'macos-12'
120120

0 commit comments

Comments
 (0)