Merge pull request #11857 from ilya-zuyev/ilyaz/upload_arm64_to_gcs

fix kvm2-arm64 scripts
pull/11889/head
Medya Ghazizadeh 2021-07-02 10:10:27 -04:00 committed by GitHub
commit 429b00d4f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -40,7 +40,7 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install -y libvirt-dev
make cross e2e-cross debs
MINIKUBE_BUILD_IN_DOCKER=y make cross e2e-cross debs
cp -r test/integration/testdata ./out
whoami
echo github ref $GITHUB_REF

View File

@ -46,6 +46,8 @@ make -j 16 \
out/minikube_${DEB_VER}_amd64.deb \
out/minikube_${DEB_VER}_arm64.deb \
out/docker-machine-driver-kvm2_$(make deb_version_base).deb \
out/docker-machine-driver-kvm2_${DEB_VER}_amd64.deb \
out/docker-machine-driver-kvm2_${DEB_VER}_arm64.deb \
&& failed=$? || failed=$?
BUILT_VERSION=$("out/minikube-$(go env GOOS)-$(go env GOARCH)" version)
@ -70,7 +72,7 @@ fi
cp -r test/integration/testdata out/
# Don't upload the buildroot artifacts if they exist
rm -r out/buildroot || true
rm -rf out/buildroot
# At this point, the out directory contains the jenkins scripts (populated by jenkins),
# testdata, and our build output. Push the changes to GCS so that worker nodes can re-use them.