Skip to content

Commit d95f1a5

Browse files
adiskywangxiyuan
authored andcommitted
Fix conformance v1.14, v1.13 (apache#635)
GOMODULE=ON causing problem in conformance tests v1.14 and v1.13, disabled it for v1.14 and v1.13
1 parent 8c533e7 commit d95f1a5

File tree

1 file changed

+6
-0
lines changed
  • playbooks/cloud-provider-openstack-acceptance-test-e2e-conformance

1 file changed

+6
-0
lines changed

playbooks/cloud-provider-openstack-acceptance-test-e2e-conformance/run.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,12 @@
112112
# Build all binaries
113113
export KUBE_FASTBUILD=true
114114
export KUBERNETES_CONFORMANCE_TEST=y
115+
# Go modules not supported by kubernetes before v1.15
116+
if [ '{{ k8s_version }}' == 'release-1.13' || '{{ k8s_version }}' == 'release-1.14' ]; then
117+
unset GO111MODULE
118+
unset GOSUMDB
119+
unset GOPROXY
120+
fi
115121
116122
# TEMP - Dump Memory Every Second
117123
free -lmthw -c10000 >> $LOG_DIR/system_memory.log &

0 commit comments

Comments
 (0)