Skip to content

Commit 69c2c10

Browse files
committed
feat: enable build test on OpenBSD.
1 parent 29ccada commit 69c2c10

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ build_test: ## test only buildable
2727
GOOS=freebsd GOARCH=arm64 go test ./... | $(BUILD_FAIL_PATTERN)
2828
CGO_ENABLED=0 GOOS=darwin go test ./... | $(BUILD_FAIL_PATTERN)
2929
GOOS=windows go test ./... | $(BUILD_FAIL_PATTERN)
30-
# Operating systems supported for building only (not implemented error if used)
30+
# The following operating systems are tested only for successful builds.
31+
# Value testing is not performed.
3132
GOOS=solaris go test ./... | $(BUILD_FAIL_PATTERN)
3233
GOOS=dragonfly go test ./... | $(BUILD_FAIL_PATTERN)
3334
GOOS=netbsd go test ./... | $(BUILD_FAIL_PATTERN)
34-
# cross build to OpenBSD not worked since process has "C"
35-
# GOOS=openbsd go test ./... | $(BUILD_FAIL_PATTERN)
35+
GOOS=openbsd go test ./... | $(BUILD_FAIL_PATTERN)
3636
GOOS=plan9 go test ./... | $(BUILD_FAIL_PATTERN)
3737

3838
ifeq ($(shell uname -s), Darwin)

0 commit comments

Comments
 (0)