Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

revert to building minimum version for mac to 10.9 & separate step fo… #576

Merged
merged 1 commit into from
Dec 11, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ jobs:
- name: Run unit tests
run: task test-unit

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

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

- name: Build the Agent for macos
env:
MACOSX_DEPLOYMENT_TARGET: 10.9 # minimum supported version for mac
run: task build
if: matrix.operating-system == 'macos-10.15'

# config.ini is required by the executable when it's run
- name: Upload artifacts
uses: actions/upload-artifact@v2
Expand Down