Skip to content
This repository was archived by the owner on Aug 2, 2023. It is now read-only.

Commit d4fe27c

Browse files
committed
Merge pull request #1151 from pphaneuf/go_build
Don't ignore the result of the Go tests in the Travis build. Includes a workaround for a pre-existing problem.
2 parents 0d91029 + a3914ab commit d4fe27c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,8 @@ script:
120120
- ${MAKE} -j$(getconf _NPROCESSORS_ONLN) check VERBOSE=1 V=${ENV_VERBOSE}
121121
- ant build test
122122
- ${MAKE} -C python test
123+
- pushd ${GOPATH}
123124
- |
124-
pushd ${GOPATH}
125-
CGO_CPPFLAGS="-I${INSTALL_DIR}/include" CGO_LDFLAGS="-L${INSTALL_DIR}/lib" go test -v ./src/github.com/google/certificate-transparency/go/...
126-
popd
125+
GODEBUG=cgocheck=0 CGO_CPPFLAGS="-I${INSTALL_DIR}/include" CGO_LDFLAGS="-L${INSTALL_DIR}/lib" go test -v ./src/github.com/google/certificate-transparency/go/...
126+
- popd
127127

0 commit comments

Comments
 (0)