Skip to content

Commit

Permalink
MAINT: move to circleci (autoreject#116)
Browse files Browse the repository at this point in the history
  • Loading branch information
jasmainak authored and agramfort committed Sep 17, 2018
1 parent 590e233 commit 71133bb
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 33 deletions.
42 changes: 42 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
version: 2
jobs:
build:
docker:
- image: circleci/python:3.7.0-stretch-node-browsers
steps:
- checkout
- restore_cache:
keys:
- data-cache
- run:
name: Install miniconda
command: |
wget -q http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O ~/miniconda.sh;
chmod +x ~/miniconda.sh;
~/miniconda.sh -b -p ~/miniconda;
echo "export PATH=~/miniconda/bin:$PATH" >> $BASH_ENV;
- run:
name: Setup Python environment
command: |
pip install --upgrade pip
pip install matplotlib Pillow
pip install sphinx sphinx-gallery sphinx_bootstrap_theme
pip install cython scipy
pip install --upgrade mne
pip install scikit-learn==0.18
pip install scikit-optimize tqdm
pip install numpydoc
pip install -e .
- run:
name: Build the documentation
command: |
cd doc && make html
- store_artifacts:
path: doc/_build/html/
destination: html
- save_cache:
key: data-cache
paths:
- ~/.mne
- ~/mne_data/MNE-sample-data
- examples/ds117
32 changes: 0 additions & 32 deletions circle.yml

This file was deleted.

2 changes: 1 addition & 1 deletion doc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#

# You can set these variables from the command line.
SPHINXOPTS =
SPHINXOPTS = -v
SPHINXBUILD = sphinx-build
PAPER =
BUILDDIR = _build
Expand Down

0 comments on commit 71133bb

Please sign in to comment.