Skip to content

Commit 251cb51

Browse files
committed
fix wrong conditions 🧒
1 parent ace6600 commit 251cb51

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,11 +76,11 @@ jobs:
7676
GOARCH: 386 # 32bit architecture (for support)
7777
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)
7878
run: task build-win
79-
if: matrix.operating-system == 'windows-2019' || matrix.arch == '386'
79+
if: matrix.operating-system == 'windows-2019' && matrix.arch == '386'
8080

8181
- name: Build the Agent for win64
8282
run: task build-win # GOARCH=amd64 by default on the runners
83-
if: matrix.operating-system == 'windows-2019' || matrix.arch == 'amd64'
83+
if: matrix.operating-system == 'windows-2019' && matrix.arch == 'amd64'
8484

8585
- name: Build the Agent for macos
8686
env:

0 commit comments

Comments
 (0)