diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 246619d2f46952c6b7cf3b84361dc04c2b2e66ae..8f702f6654a7fdb78c17040c813ff0e0747545c3 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 ############