~ generalize for all modules

This commit is contained in:
Johannes Theiner 2019-11-06 17:39:21 +00:00
parent f7c5279a9c
commit d1b05c89a7
1 changed files with 20 additions and 11 deletions

View File

@ -10,10 +10,11 @@ stages:
clang_tidy:
image: jhase/
stage: style
tags:
- docker-ci
- docker-ci
script:
- sh .ci/clang-tidy.sh;
- sh .ci/clang-tidy.sh;
make_test:
stage: test
@ -22,14 +23,14 @@ make_test:
script:
- apt-get update
- apt-get install -y make cmake clang-tidy
- cd ..
- ls
- mkdir current
- mv !(current) current
- git clone https://gitlab-ci-token:${CI_JOB_TOKEN}@gitlab.repo.digitech.hs-emden-leer.de/link/projekte/ws19/vkvm-new/library.git
- mkdir library/build
- cd library/build
- cmake ..
- make
- cd ../../terminal
- cd ../../current
- mkdir build
- cd build
- cmake ..
@ -41,9 +42,17 @@ cmake_build:
tags:
- docker-ci
script:
- apt-get update
- apt-get install -y make cmake clang-tidy
- mkdir build
- cd build
- cmake ..
- make
- apt-get update
- apt-get install -y make cmake clang-tidy
- mkdir current
- mv !(current) current
- git clone https://gitlab-ci-token:${CI_JOB_TOKEN}@gitlab.repo.digitech.hs-emden-leer.de/link/projekte/ws19/vkvm-new/library.git
- mkdir library/build
- cd library/build
- cmake ..
- make
- cd ../../current
- mkdir build
- cd build
- cmake ..
- make