Skip to content

Commit

Permalink
correct flags
Browse files Browse the repository at this point in the history
  • Loading branch information
dfm committed Jan 16, 2020
1 parent 1c6c1ef commit 0da6436
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions .ci/azure/run_tutorials.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
pattern = "docs/notebooks/*.py"
filenames = [fn for fn in glob.glob(pattern) if "notebook_setup" not in fn]
filenames = list(sorted(filenames, reverse=True))
filenames = [filenames[0]]


def process_notebook(filename):
Expand Down
5 changes: 3 additions & 2 deletions .ci/azure/run_tutorials.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,12 @@ conda activate ./env
# Attempt to fix BLAS warnings
sudo apt-get update
sudo apt-get install libblas-dev liblapack-dev libatlas-base-dev gfortran
export THEANO_FLAGS=blas.ldflags="-L/usr/lib/ -lblas"
export THEANO_FLAGS=blas.ldflags="-L/usr/lib/ -lblas",$THEANO_FLAGS
echo $THEANO_FLAGS

# Execute the tutorials
mkdir -p docs/_static/notebooks
cp docs/notebooks/notebook_setup.py docs/_static/notebooks
env/bin/python .ci/azure/run_tutorials.py

ls theano
ls

0 comments on commit 0da6436

Please sign in to comment.