add makefile tests and travis config

This commit is contained in:
Robin Appelman 2018-04-17 12:36:16 +02:00
commit c0337e55d9
6 changed files with 90 additions and 1 deletions

8
Dockerfile Normal file
View file

@ -0,0 +1,8 @@
FROM ekidd/rust-musl-builder
# We need to add the source code to the image because `rust-musl-builder`
# assumes a UID of 1000, but TravisCI has switched to 2000.
ADD . ./
RUN sudo chown -R rust:rust .
CMD cargo build --release