diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 38896390c8d9b03cd4a31869847fbd4f954b701e..80dae3a6bc3475897ecbdd4c5d485f39bea7aa53 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,20 +1,23 @@ +variables: + MATLAB_VERSION: R2020b + OLD_MATLAB_VERSION: R2014a + OCTAVE_VERSION: 5.2.0 + before_script: - git clone https://git.dynare.org/Dynare/dseries.git test_matlab: stage: test script: - - make check-matlab + - make check-matlab MATLAB=/usr/local/MATLAB/$MATLAB_VERSION/bin/matlab artifacts: paths: - test/my/report/dir/report.pdf test_old_matlab: stage: test - variables: - MATLAB: /usr/local/MATLAB/R2014a/bin/matlab script: - - make check-matlab + - make check-matlab MATLAB=/usr/local/MATLAB/$OLD_MATLAB_VERSION/bin/matlab artifacts: paths: - test/my/report/dir/report.pdf @@ -22,7 +25,7 @@ test_old_matlab: test_octave: stage: test script: - - make check-octave + - make check-octave OCTAVE=/usr/local/octave/$OCTAVE_VERSION/bin/octave artifacts: paths: - test/my/report/dir/report.pdf diff --git a/Makefile b/Makefile index 451261ef2cba87538a0d03eb422a9adcbdad680b..ed0a6418add6e6bb537e3311832af88e0687c8ba 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ OCTAVE ?= octave-cli -MATLAB ?= $(shell which matlab) +MATLAB ?= matlab all: check-octave check-matlab