We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4405987 commit 8d63402Copy full SHA for 8d63402
Makefile
@@ -34,7 +34,7 @@ nofuse:
34
##############################################################
35
# tests targets
36
37
-test: test_expensive
+test: test_expensive windows_build_check
38
39
test_short: build test_go_short test_sharness_short
40
@@ -71,3 +71,8 @@ test_all_commits_travis:
71
git config --global user.name "IPFS BOT"
72
git fetch origin master:master
73
GIT_EDITOR=true git rebase -i --exec "make test" master
74
+
75
+# since we have CI for osx and linux but not windows, this should help
76
+windows_build_check:
77
+ GOOS=windows GOARCH=amd64 go build -o .test.ipfs.exe -tags=nofuse ./cmd/ipfs
78
+ rm .test.ipfs.exe
0 commit comments