We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ace6600 commit 251cb51Copy full SHA for 251cb51
.github/workflows/test.yml
@@ -76,11 +76,11 @@ jobs:
76
GOARCH: 386 # 32bit architecture (for support)
77
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)
78
run: task build-win
79
- if: matrix.operating-system == 'windows-2019' || matrix.arch == '386'
+ if: matrix.operating-system == 'windows-2019' && matrix.arch == '386'
80
81
- name: Build the Agent for win64
82
run: task build-win # GOARCH=amd64 by default on the runners
83
- if: matrix.operating-system == 'windows-2019' || matrix.arch == 'amd64'
+ if: matrix.operating-system == 'windows-2019' && matrix.arch == 'amd64'
84
85
- name: Build the Agent for macos
86
env:
0 commit comments