~ update ci script to remove file not founds

This commit is contained in:
Johannes Theiner 2019-12-04 07:47:31 +00:00
parent a088a6da1d
commit 02a0a455e7
1 changed files with 11 additions and 1 deletions

View File

@ -14,6 +14,16 @@ clang_tidy:
tags:
- docker-ci
script:
- apt-get update
- apt-get install -y g++ make cmake clang-tidy
- mkdir current
- ls | grep -v current | xargs mv -t 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
- sh .ci/clang-tidy.sh;
make_test:
@ -65,4 +75,4 @@ cmake_build:
- mkdir build
- cd build
- cmake ..
- make
- make