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
# build the agent without GUI support (no tray icon)
93
93
- name: Build the Agent-cli
94
94
run: task go:build-cli
95
-
if: matrix.os == 'ubuntu-18.04'
95
+
if: matrix.os == 'ubuntu-20.04'
96
96
97
97
# 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)
98
98
# rsrc will produce a *.syso file that should get automatically recognized by go build command and linked into an executable.
@@ -211,7 +211,7 @@ jobs:
211
211
# This job is responsible for generating the installers (using installbuilder)
212
212
package:
213
213
needs: code-sign-mac-executable
214
-
runs-on: ubuntu-18.04
214
+
runs-on: ubuntu-20.04
215
215
216
216
env:
217
217
# vars used by installbuilder
@@ -231,10 +231,10 @@ jobs:
231
231
strategy:
232
232
fail-fast: false # if one os is failing continue nonetheless
233
233
matrix: # used to generate installers for different OS and not for runs-on
234
-
os: [ubuntu-18.04, windows-2019, macos-12]
234
+
os: [ubuntu-20.04, windows-2019, macos-12]
235
235
arch: [-amd64]
236
236
include:
237
-
- os: ubuntu-18.04
237
+
- os: ubuntu-20.04
238
238
install-builder-name: linux
239
239
executable-path: artifacts/linux-amd64/
240
240
- os: windows-2019
@@ -275,14 +275,14 @@ jobs:
275
275
# zip artifacts do not mantain executable permission
0 commit comments