fcc6921ddb
Fixes #27, or at least works around it. This deals with the issues mentioned in https://github.com/sgrif/pq-sys/pull/18, and it relies heavily on ideas from @golddranks and @clux.
33 lines
877 B
Bash
Executable file
33 lines
877 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Make bash fail much more aggressively on errors.
|
|
set -euo pipefail
|
|
|
|
# Make sure we can build our main container.
|
|
docker build -t ekidd/rust-musl-builder .
|
|
|
|
# Make sure we can build our example derived container.
|
|
docker build -t rust-musl-zlib examples/adding-a-library
|
|
|
|
# Make sure we can build a multi-stage container.
|
|
docker build -t rust-musl-builder-using-diesel examples/using-diesel
|
|
docker run --rm rust-musl-builder-using-diesel
|
|
|
|
# Make sure we can build a static executable.
|
|
docker run --rm ekidd/rust-musl-builder bash -c "
|
|
set -euo pipefail
|
|
export USER=rust
|
|
cargo new --vcs none --bin testme
|
|
cd testme
|
|
cargo build
|
|
echo 'Checking to make sure it is not a dynamic executable'
|
|
if ldd target/x86_64-unknown-linux-musl/debug/testme; then
|
|
echo 'Executable is not static!' 1>&2
|
|
echo 'FAIL.' 1>&2
|
|
exit 1
|
|
fi
|
|
"
|
|
|
|
# We're good.
|
|
echo 'OK. Tests passed.' 1>&2
|