Skip to content
Snippets Groups Projects
Commit cdab6a19 authored by florian's avatar florian
Browse files

DRAFT: Pipeline

parent 3db4a211
No related branches found
No related tags found
2 merge requests!3TST: Add CI infrastructure for integration testing,!2ENH: Add minimal wrapping of libcaosdb's C interface
Pipeline #10215 failed
...@@ -18,6 +18,7 @@ variables: ...@@ -18,6 +18,7 @@ variables:
stages: stages:
- code-style - code-style
- setup
- test - test
- deploy - deploy
...@@ -45,12 +46,18 @@ code-style: ...@@ -45,12 +46,18 @@ code-style:
end' end'
allow_failure: true 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:
test:1.6:
stage: test stage: test
image: julia:1.6
# Use `docker` runners # Use `docker` runners
tags: [ docker ] tags: [ docker ]
# Uncomment below if you would like to run the tests on specific # Uncomment below if you would like to run the tests on specific
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment