We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
test.yml
release.yml
1 parent 774959c commit 3225612Copy full SHA for 3225612
.github/workflows/test.yml
@@ -49,9 +49,9 @@ jobs:
49
- name: Run unit tests
50
run: task test-unit
51
52
- - name: Build the Agent
+ - name: Build the Agent for linux
53
run: task build
54
- if: matrix.operating-system != 'windows-2019'
+ if: matrix.operating-system == 'ubuntu-18.04'
55
56
# build the agent without GUI support (no tray icon)
57
- name: Build the Agent-cli
@@ -73,3 +73,9 @@ jobs:
73
GO386: 387 # support old instruction sets without MMX (used in the Pentium 4) (will be deprecated in GO > 1.15 https://golang.org/doc/go1.15)
74
run: task build-win32
75
if: matrix.operating-system == 'windows-2019'
76
+
77
+ - name: Build the Agent for macos
78
+ env:
79
+ MACOSX_DEPLOYMENT_TARGET: 10.9 # minimum supported version for mac
80
+ run: task build
81
+ if: matrix.operating-system == 'macos-10.15'
0 commit comments