From cdab6a1902dd7c59fd006a7fe6b95c5dfe3c822b Mon Sep 17 00:00:00 2001 From: florian <f.spreckelsen@inidscale.com> Date: Mon, 12 Jul 2021 15:29:47 +0200 Subject: [PATCH] DRAFT: Pipeline --- .gitlab-ci.yml | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a8e3126..0df2b91 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -18,6 +18,7 @@ variables: stages: - code-style + - setup - test - deploy @@ -45,12 +46,18 @@ code-style: end' allow_failure: true +# Install libcaosdb +setup: + tags: [ docker ] + stage: setup + script: + - echo "deb http://deb.debian.org/debian buster-backports main" > /etc/apt/sources.list.d/buster-backports.list + - apt-get update -qq && apt-get install -y git python3-pip cmake/buster-backports + - + -# Name a test and select an appropriate image. -# images comes from Docker hub -test:1.6: +test: stage: test - image: julia:1.6 # Use `docker` runners tags: [ docker ] # Uncomment below if you would like to run the tests on specific -- GitLab