From 8800d4459299fde7362dd2ccce64b0a96477aa68 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Villemot?= <sebastien@dynare.org> Date: Tue, 30 May 2023 15:53:17 +0200 Subject: [PATCH] CI: adapt for new location of MATLAB binaries --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5cc0461..ebb5270 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -8,7 +8,7 @@ before_script: test_matlab: stage: test script: - - make check-matlab MATLAB=/usr/local/MATLAB/$MATLAB_VERSION/bin/matlab + - make check-matlab MATLAB=/opt/MATLAB/$MATLAB_VERSION/bin/matlab artifacts: paths: - test/my/report/dir/report.pdf @@ -16,7 +16,7 @@ test_matlab: test_old_matlab: stage: test script: - - make check-matlab MATLAB=/usr/local/MATLAB/$OLD_MATLAB_VERSION/bin/matlab + - make check-matlab MATLAB=/opt/MATLAB/$OLD_MATLAB_VERSION/bin/matlab artifacts: paths: - test/my/report/dir/report.pdf -- GitLab