File tree Expand file tree Collapse file tree 3 files changed +16
-2
lines changed
Expand file tree Collapse file tree 3 files changed +16
-2
lines changed Original file line number Diff line number Diff line change @@ -10,5 +10,10 @@ cd "${WORKDIR}"
1010# Kubeadm was added for testing in 1.19 and later
1111for n in {1..5}; do
1212 echo " +++ Test retry ${n} "
13- ./build/shell.sh -c ' make generated_files kubeadm && mkdir -p _output/local/go/bin/ && cp _output/dockerized/bin/linux/amd64/kubeadm _output/local/go/bin/ && ./hack/install-etcd.sh && PATH=$(pwd)/third_party/etcd:${PATH} make test-cmd' 2>&1 | grep -v -E ' ^I\w+ ' && exit 0
13+ ./build/shell.sh -c '
14+ make generated_files kubeadm
15+ mkdir -p _output/local/go/bin/ && cp _output/dockerized/bin/linux/amd64/kubeadm _output/local/go/bin/
16+ ./hack/install-etcd.sh
17+ PATH=$(pwd)/third_party/etcd:${PATH} make test-cmd
18+ ' 2>&1 | grep -v -E ' ^I\w+ ' && exit 0
1419done
Original file line number Diff line number Diff line change @@ -11,7 +11,10 @@ TMPFILE="${TMPDIR}/test-integration.log"
1111
1212# Etcd was added for testing in 1.21 and later
1313function test-integration() {
14- ./build/shell.sh -c ' ./hack/install-etcd.sh && PATH=$(pwd)/third_party/etcd:${PATH} make test-integration'
14+ ./build/shell.sh -c '
15+ ./hack/install-etcd.sh
16+ PATH=$(pwd)/third_party/etcd:${PATH} make test-integration
17+ '
1518}
1619
1720test-integration 2>&1 | tee " ${TMPFILE} " | grep -v -E ' ^I\w+ ' && exit 0
Original file line number Diff line number Diff line change @@ -189,13 +189,19 @@ releases:
189189 - fix-run-docker.1.23
190190 - no-delete-images.1.23
191191 - fix-etcd-put-key.1.23
192+ test_failures_tolerated :
193+ - k8s.io/kubernetes/pkg/kubelet/volumemanager/reconciler
194+ - k8s.io/kubernetes/pkg/volume/csi
192195
193196 - name : v1.20.2-ci
194197 base_release : v1.20.2
195198 patches :
196199 - fix-run-docker.1.23
197200 - no-delete-images.1.23
198201 - fix-etcd-put-key.1.23
202+ test_failures_tolerated :
203+ - k8s.io/kubernetes/pkg/kubelet/volumemanager/reconciler
204+ - k8s.io/kubernetes/pkg/volume/csi
199205
200206 - name : v1.19.16-ci
201207 base_release : v1.19.16
You can’t perform that action at this time.
0 commit comments