388941cd8a
We update our base image to Ubuntu 18.04, and update all of our dependencies to the latest released versions. This includes: - gcc-multilib-arm-linux-gnueabihf (latest distro version) - mdbook 0.2.1 (0.2.3 is out, but there's no binary build) - OpenSSL 1.1.1b - libpq 11.2
10 lines
235 B
Bash
Executable file
10 lines
235 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 -t rust-musl-builder-"$EXAMPLE" examples/"$EXAMPLE"
|
|
done
|