forked from autoreject/autoreject
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MAINT: move to circleci (autoreject#116)
- Loading branch information
Showing
3 changed files
with
43 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters