From 009fadab665cc3d3245f2072455254fbf4a69e75 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?S=C3=A9bastien=20Villemot?= <sebastien@dynare.org>
Date: Tue, 30 May 2023 17:24:03 +0200
Subject: [PATCH] CI: adapt for new location of MATLAB binaries

---
 .gitlab-ci.yml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 5d06d42..04fab29 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,15 +1,15 @@
 variables:
   GIT_SUBMODULE_STRATEGY: normal
   TERM: linux
+  MATLAB_VERSION: R2023a
+  OLD_MATLAB_VERSION: R2015a
 
 test_matlab:
   stage: test
   script:
-    - make check-matlab
+    - make check-matlab MATLAB=/opt/MATLAB/$MATLAB_VERSION/bin/matlab
 
 test_old_matlab:
   stage: test
-  variables:
-    MATLAB: /usr/local/MATLAB/R2015a/bin/matlab
   script:
-    - make check-matlab
\ No newline at end of file
+    - make check-matlab MATLAB=/opt/MATLAB/$OLD_MATLAB_VERSION/bin/matlab
-- 
GitLab