Fix Jenkins Cross script to copy testdata properly
`gsutil` changed its cp behavior starting with version 4.46, we need to change how we call it in order to preserve the directory structure our tests are expecting.pull/5562/head
parent
03c241db74
commit
c7c7201757
|
@ -63,4 +63,4 @@ cp -r test/integration/testdata out/
|
||||||
# Don't upload the buildroot artifacts if they exist
|
# Don't upload the buildroot artifacts if they exist
|
||||||
rm -r out/buildroot || true
|
rm -r out/buildroot || true
|
||||||
|
|
||||||
gsutil -m cp -r out/* "gs://${bucket}/${ghprbPullId}/"
|
gsutil -m cp -r out/ "gs://${bucket}/${ghprbPullId}/"
|
||||||
|
|
Loading…
Reference in New Issue