We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96c20a9 commit b88987eCopy full SHA for b88987e
.github/workflows/release.yml
@@ -52,9 +52,9 @@ jobs:
52
- name: Run unit tests
53
run: task test-unit
54
55
- - name: Build the Agent
+ - name: Build the Agent for linux
56
run: task build
57
- if: matrix.operating-system != 'windows-2019'
+ if: matrix.operating-system == 'ubuntu-18.04'
58
59
# build the agent without GUI support (no tray icon)
60
- name: Build the Agent-cli
@@ -77,6 +77,12 @@ jobs:
77
run: task build-win32
78
if: matrix.operating-system == 'windows-2019'
79
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
+
86
# config.ini is required by the executable when it's run
87
- name: Upload artifacts
88
uses: actions/upload-artifact@v2
0 commit comments