From 5b2f9f5e1ed98bd8df70a470f64e90dfef82ce00 Mon Sep 17 00:00:00 2001 From: Kevin <kevin.hoellring@fau.de> Date: Thu, 24 Oct 2019 13:18:28 +0200 Subject: [PATCH] Add Gitlab CI script for testing the program --- .gitlab-ci.yml | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..1162d75 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,41 @@ +image: + name: cp1_testing_image_ex1:latest + +stages: + - test + + +# Testing the stuff +test_task1: + stage: test + tags: + - task_check + script: make test_task1 + + +test_task2: + stage: test + tags: + - task_check + script: make test_task2 + + +test_task3: + stage: test + tags: + - task_check + script: make test_task3 + + +test_task4: + stage: test + tags: + - task_check + script: make test_task4 + + +test_task4: + stage: test + tags: + - task_check + script: make test_task4 -- GitLab