Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix wrong conditions 🧒
  • Loading branch information
umbynos committed Dec 17, 2020
commit 251cb51e8417509a3afbefbad2b8d6ca6aa80c17
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,11 +76,11 @@ jobs:
GOARCH: 386 # 32bit architecture (for support)
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)
run: task build-win
if: matrix.operating-system == 'windows-2019' || matrix.arch == '386'
if: matrix.operating-system == 'windows-2019' && matrix.arch == '386'

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

- name: Build the Agent for macos
env:
Expand Down