-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #74 from zalando/freebsd-cgo-disabled
Test building on freebsd with cgo disabled
- Loading branch information
Showing
2 changed files
with
8 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
//go:build dragonfly || freebsd || linux || netbsd || openbsd | ||
// +build dragonfly freebsd linux netbsd openbsd | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
mikkeloscar
Author
Member
|
||
//go:build (dragonfly && cgo) || (freebsd && cgo) || linux || netbsd || openbsd | ||
|
||
package keyring | ||
|
||
|
pretty sure you need this second line otherwise builds fail with the following error:
//go:build comment without // +build comment
when using go version 1.16