Skip to content
Snippets Groups Projects
Commit 0d6fbbc6 authored by Sébastien Villemot's avatar Sébastien Villemot
Browse files

CI: add jobs for testsuite

parent 763b0a23
Branches
No related tags found
No related merge requests found
......@@ -25,3 +25,27 @@ build_doc:
- doc/dynare.info*
- doc/dynare.html
- doc/dynare.pdf
testsuite_matlab:
stage: test
script:
- autoreconf -si
- './configure --disable-octave --with-matlab=$(dirname $(dirname $(readlink -f `which matlab`))) MATLAB_VERSION=$(echo version | matlab -nodesktop -nodisplay -nosplash 2>/dev/null | sed -En "/ans\ =/!d;n;n;s/^[^0-9]*([0-9]+\.[0-9]+).*$/\1/;p")'
- make -j $(($(nproc) / 2)) -C tests check-matlab
dependencies:
- build_binaries
testsuite_octave:
stage: test
variables:
OPENBLAS_NUM_THREADS: 1
script:
- autoreconf -si
- ./configure --disable-matlab
- make -j $(nproc) -C tests check-octave
dependencies:
- build_binaries
only:
- tags
- schedules
- web
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment