Run build scripts in parallel

This commit is contained in:
xavion-lux 2023-05-18 23:11:56 +02:00
parent 953f00febd
commit d3e40a2ff6
No known key found for this signature in database
GPG key ID: 2D1F99DB75512031

View file

@ -63,10 +63,13 @@ release-docker:
fi
- |
for image in $IMAGE_NAMES; do
docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 -t $image . --push
docker buildx build --platform $PLATFORM -t $image . --push
done
- |
echo "Container image pushed. You can pull it with";
for image in $IMAGE_NAMES; do
echo "docker pull $image"
done
parallel:
matrix:
- PLATFORM: [linux/amd64, linux/arm64, linux/arm/v7]