diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..9b85894 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,14 @@ +# Use Rust docker image, see: https://hub.docker.com/_/rust/ +image: rust:latest + +# Defines stages which are to be executed +stages: + - build + +# Run `cargo build` for the project with stable Rust +run-build: + stage: build + image: rust:latest + script: + - rustc --version && cargo --version + - cargo build --release --jobs 1