From 7c8c30c29c1a2da18420e351a03b7b2c4f1d7707 Mon Sep 17 00:00:00 2001 From: "Melkonian,O. (Orestis)" <o.melkonian@students.uu.nl> Date: Sun, 4 Mar 2018 15:38:14 +0100 Subject: [PATCH] Setting up initial Travis-CI. --- .gitlab-ci.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..51d3ed7 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,32 @@ +# Use new container infrastructure to enable caching +sudo: false + +# Do not choose a language; we provide our own build tools. +language: generic + +# Caching so the next build will be fast too. +cache: + directories: + - $HOME/.stack + +# Ensure necessary system libraries are present +addons: + apt: + packages: + - libgmp-dev + - libz3-dev + - z3 + +before_install: +# Download and unpack the stack executable +- mkdir -p ~/.local/bin +- export PATH=$HOME/.local/bin:$PATH +- travis_retry curl -L https://www.stackage.org/stack/linux-x86_64 | tar xz --wildcards --strip-components=1 -C ~/.local/bin '*/stack' + +install: +# Build dependencies +- stack --no-terminal --install-ghc test --only-dependencies + +script: +# Build the package, its tests, and its docs and run the tests +- stack --no-terminal test --haddock --no-haddock-deps \ No newline at end of file -- GitLab