Skip to content

Commit dfcbb64

Browse files
committed
feat: enable build test on aix
1 parent b7c02ad commit dfcbb64

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Makefile

+5
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ build_test: ## test only buildable
3434
GOOS=netbsd go test ./... | $(BUILD_FAIL_PATTERN)
3535
GOOS=openbsd go test ./... | $(BUILD_FAIL_PATTERN)
3636
GOOS=plan9 go test ./... | $(BUILD_FAIL_PATTERN)
37+
CGO_ENABLED=0 GOOS=aix GOARCH=ppc64 go test ./... | $(BUILD_FAIL_PATTERN)
38+
CGO_ENABLED=1 GOOS=aix GOARCH=ppc64 go test ./... | $(BUILD_FAIL_PATTERN)
3739

3840
ifeq ($(shell uname -s), Darwin)
3941
CGO_ENABLED=1 GOOS=darwin go test ./... | $(BUILD_FAIL_PATTERN)
@@ -77,6 +79,9 @@ vet:
7779
GOOS=plan9 GOARCH=amd64 go vet ./...
7880
GOOS=plan9 GOARCH=386 go vet ./...
7981

82+
CGO_ENABLED=0 GOOS=aix GOARCH=ppc64 go vet ./...
83+
CGO_ENABLED=1 GOOS=aix GOARCH=ppc64 go vet ./...
84+
8085
macos_test:
8186
CGO_ENABLED=0 GOOS=darwin go test ./... | $(BUILD_FAIL_PATTERN)
8287
CGO_ENABLED=1 GOOS=darwin go test ./... | $(BUILD_FAIL_PATTERN)

0 commit comments

Comments
 (0)