macOS snapshot: rely on artifacts from CI build_doc job

time-shift
Houtan Bastani 2019-09-20 15:08:11 +02:00
parent 079a57d4c0
commit 610de60bfe
No known key found for this signature in database
GPG Key ID: 000094FB955BE169
1 changed files with 4 additions and 0 deletions

View File

@ -25,7 +25,11 @@ fi
cd "$ROOTDIR"
[[ -f configure ]] || autoreconf -si
CC=gcc-9 CXX=g++-9 ./configure --with-matlab=/Applications/MATLAB_R2016b.app MATLAB_VERSION=R2016b --with-matio=/usr/local --with-gsl=/usr/local --with-slicot=/usr/local --disable-octave PACKAGE_VERSION="$VERSION" PACKAGE_STRING="dynare $VERSION"
if [[ -z $CI ]]; then
# If not in Gitlab CI, clean the source and build the doc
make clean
make -j"$NTHREADS" pdf html
fi
make -j"$NTHREADS"