From 7e11807eedb0ec782c0bae8963fd5c5d17cbbc21 Mon Sep 17 00:00:00 2001 From: Arne Keller Date: Sat, 20 Mar 2021 22:24:52 +0100 Subject: [PATCH] CI: first attempt --- .gitlab-ci.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..5778017 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,13 @@ +variables: + CARGO_HOME: /tmp/cargo + +build: + script: + - nix-shell -p rustc cargo " + rustc -vV + cargo -vV + cargo build" +test: + script: + - nix-shell -p cargo " + cargo test"