From 1fd2dbe464d3d4c9ad4c1f9bf08b924d7ceb38f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joan=20Vallv=C3=A9=20Navarro?= <jvallve@iri.upc.edu> Date: Thu, 20 Jan 2022 14:05:37 +0100 Subject: [PATCH] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 246619d..8f702f6 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -9,19 +9,19 @@ stages: # List of stages for jobs, and their order of execution - ./install_wolf.sh -a -f y -c y -d . -w . .script_test_template: &script_test_definition - - cd wolf/wolf + - cd wolf/wolf/build - ctest -j$(nproc) - - cd ../imu + - cd ../../imu/build - ctest -j$(nproc) - - cd ../gnss + - cd ../../gnss/build - ctest -j$(nproc) - - cd ../laser + - cd ../../laser/build - ctest -j$(nproc) - - cd ../vision + - cd ../../vision/build - ctest -j$(nproc) - - cd ../apriltag + - cd ../../apriltag/build - ctest -j$(nproc) - - cd ../bodydynamics + - cd ../../bodydynamics/build - ctest -j$(nproc) ############ JOBS ############ -- GitLab