Skip to content

Commit 3e532a0

Browse files
committed
change min supported macOS version to 10.11 (also go 1.14)
1 parent c193242 commit 3e532a0

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/release.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Install Go
2525
uses: actions/setup-go@v2
2626
with:
27-
go-version: "1.15"
27+
go-version: "1.14"
2828

2929
# dependencies used for compiling the GUI
3030
- name: Install Dependencies (Linux)
@@ -88,9 +88,9 @@ jobs:
8888

8989
- name: Build the Agent for macos
9090
env:
91-
MACOSX_DEPLOYMENT_TARGET: 10.12 # minimum supported version for mac
92-
CGO_CFLAGS: -mmacosx-version-min=10.12
93-
CGO_LDFLAGS: -mmacosx-version-min=10.12
91+
MACOSX_DEPLOYMENT_TARGET: 10.11 # minimum supported version for mac
92+
CGO_CFLAGS: -mmacosx-version-min=10.11
93+
CGO_LDFLAGS: -mmacosx-version-min=10.11
9494
run: task build
9595
if: matrix.operating-system == 'macos-10.15'
9696

.github/workflows/test.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Install Go
2222
uses: actions/setup-go@v2
2323
with:
24-
go-version: "1.15"
24+
go-version: "1.14"
2525

2626
# dependencies used for compiling the GUI
2727
- name: Install Dependencies (Linux)
@@ -85,9 +85,9 @@ jobs:
8585

8686
- name: Build the Agent for macos
8787
env:
88-
MACOSX_DEPLOYMENT_TARGET: 10.12 # minimum supported version for mac
89-
CGO_CFLAGS: -mmacosx-version-min=10.12
90-
CGO_LDFLAGS: -mmacosx-version-min=10.12
88+
MACOSX_DEPLOYMENT_TARGET: 10.11 # minimum supported version for mac
89+
CGO_CFLAGS: -mmacosx-version-min=10.11
90+
CGO_LDFLAGS: -mmacosx-version-min=10.11
9191
run: task build
9292
if: matrix.operating-system == 'macos-10.15'
9393

0 commit comments

Comments
 (0)