build: don't push gateway docker images

This is now done from the new storj/gateway repo by another Jenkins job.
Ideally, we should remove everything related to the gateway from this
Makefile, but we cannot do it at the moment due to an all-on-one test
that depends on the gateway.

Change-Id: Ibc722bcee20c9f58b4864583ee3245455b45c7ba
This commit is contained in:
Kaloyan Raev 2020-03-11 18:10:12 +02:00 committed by Egon Elbre
parent 1b5b153fb7
commit ce1ae134a0

View File

@ -314,7 +314,7 @@ libuplink-gomobile:
push-images: ## Push Docker images to Docker Hub (jenkins)
# images have to be pushed before a manifest can be created
# satellite
for c in gateway satellite storagenode uplink versioncontrol ; do \
for c in satellite storagenode uplink versioncontrol ; do \
docker push storjlabs/$$c:${TAG}${CUSTOMTAG}-amd64 \
&& docker push storjlabs/$$c:${TAG}${CUSTOMTAG}-arm32v6 \
&& docker push storjlabs/$$c:${TAG}${CUSTOMTAG}-aarch64 \