Skip to content

Commit b88987e

Browse files
authored
revert to building minimum version for mac to 10.9 & separate step for mac (#576)
1 parent 96c20a9 commit b88987e

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

Diff for: .github/workflows/release.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ jobs:
5252
- name: Run unit tests
5353
run: task test-unit
5454

55-
- name: Build the Agent
55+
- name: Build the Agent for linux
5656
run: task build
57-
if: matrix.operating-system != 'windows-2019'
57+
if: matrix.operating-system == 'ubuntu-18.04'
5858

5959
# build the agent without GUI support (no tray icon)
6060
- name: Build the Agent-cli
@@ -77,6 +77,12 @@ jobs:
7777
run: task build-win32
7878
if: matrix.operating-system == 'windows-2019'
7979

80+
- name: Build the Agent for macos
81+
env:
82+
MACOSX_DEPLOYMENT_TARGET: 10.9 # minimum supported version for mac
83+
run: task build
84+
if: matrix.operating-system == 'macos-10.15'
85+
8086
# config.ini is required by the executable when it's run
8187
- name: Upload artifacts
8288
uses: actions/upload-artifact@v2

0 commit comments

Comments
 (0)