You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/test.yml
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -50,12 +50,12 @@ jobs:
50
50
run: task test-unit
51
51
52
52
- name: Build the Agent for linux
53
-
run: task build
53
+
run: task test:build
54
54
if: matrix.operating-system == 'ubuntu-18.04'
55
55
56
56
# build the agent without GUI support (no tray icon)
57
57
- name: Build the Agent-cli
58
-
run: task build-cli
58
+
run: task test:build-cli
59
59
if: matrix.operating-system == 'ubuntu-18.04'
60
60
61
61
# the manifest is required by windows GUI apps, otherwise the binary will crash with: "Unable to create main window: TTM_ADDTOOL failed" (for reference https://github.com/lxn/walk/issues/28)
@@ -72,14 +72,14 @@ jobs:
72
72
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)
73
73
run: |
74
74
rsrc -arch 386 -manifest manifest.xml
75
-
task build-win
75
+
task test:build-win
76
76
rm *.syso
77
77
if: matrix.operating-system == 'windows-2019'
78
78
79
79
- name: Build the Agent for win64
80
80
run: |
81
81
rsrc -arch amd64 -manifest manifest.xml
82
-
task build-win
82
+
task test:build-win
83
83
rm *.syso
84
84
if: matrix.operating-system == 'windows-2019'
85
85
@@ -88,7 +88,7 @@ jobs:
88
88
MACOSX_DEPLOYMENT_TARGET: 10.11# minimum supported version for mac
89
89
CGO_CFLAGS: -mmacosx-version-min=10.11
90
90
CGO_LDFLAGS: -mmacosx-version-min=10.11
91
-
run: task build
91
+
run: task test:build
92
92
if: matrix.operating-system == 'macos-10.15'
93
93
94
94
# config.ini is required by the executable when it's run
0 commit comments