From 9d4fe4816b2822a271b23f7b04d3dc7fc7df6a30 Mon Sep 17 00:00:00 2001 From: Thibault CORDIER <thibault.cordier@ensiie.fr> Date: Sat, 30 Jul 2022 16:09:22 +0200 Subject: [PATCH] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 337df8a..a9997f2 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -19,7 +19,8 @@ build: # before_script: # - apt update && apt -y install make autoconf script: - - g++ code/PAP_Chaleur/main.cpp -o mybinary + - cd code/PAP_Chaleur + - g++ BMatrix.cpp Coord.cpp Experience.cpp Materiau.cpp Matrix_Full.cpp Matrix_Square.cpp Objet.cpp Source.cpp Vector_Column.cpp Vector_Line.cpp main.cpp -o mybinary artifacts: paths: - mybinary @@ -32,4 +33,5 @@ build: test: stage: test script: - - ./runmytests.sh + - echo "This is a test" + # - ./runmytests.sh -- GitLab