Skip to content
Snippets Groups Projects
Verified Commit 344c734a authored by Sébastien Villemot's avatar Sébastien Villemot
Browse files

Add job to test against old MATLAB (R2009b)

Also shorten test names, because “testsuite_old_matlab” is too long and gets
truncated on the web interface.
parent d2ddbc2b
No related branches found
No related tags found
No related merge requests found
Pipeline #1882 failed
before_script: before_script:
- git clone https://git.dynare.org/Dynare/dseries.git - git clone https://git.dynare.org/Dynare/dseries.git
testsuite_matlab: test_matlab:
stage: test stage: test
script: script:
- make check-matlab - make check-matlab
...@@ -9,7 +9,17 @@ testsuite_matlab: ...@@ -9,7 +9,17 @@ testsuite_matlab:
paths: paths:
- test/my/report/dir/report.pdf - test/my/report/dir/report.pdf
testsuite_octave: test_old_matlab:
stage: test
variables:
MATLAB: /usr/local/MATLAB/R2009b/bin/matlab
script:
- make check-matlab
artifacts:
paths:
- test/my/report/dir/report.pdf
test_octave:
stage: test stage: test
script: script:
- make check-octave - make check-octave
......
OCTAVE=octave-cli OCTAVE ?= octave-cli
MATLAB=`which matlab` MATLAB ?= $(shell which matlab)
all: check-octave check-matlab all: check-octave check-matlab
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment