e50cbda169
It turns out that some popular libaries still have problems with OpenSSL 1.1, particularly `postgres` 0.15. So we'll build two sets of images now. We also explain the new image tagging scheme, and fix a bug wher the test script didn't test the newly built image.
13 lines
302 B
Bash
Executable file
13 lines
302 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Abort if anything goes wrong.
|
|
set -euo pipefail
|
|
|
|
# Make sure we can build some of our more important test images.
|
|
for EXAMPLE in using-diesel; do
|
|
docker build \
|
|
--build-arg BASE_IMAGE="$IMAGE_NAME" \
|
|
-t rust-musl-builder-"$EXAMPLE" \
|
|
examples/"$EXAMPLE"
|
|
done
|