Skip to content

Commit 27f7d7b

Browse files
authored
Merge pull request #41 from DerThorsten/fix_deploy_docs
changed ci script for build_deploy_docs target
2 parents 4ecfa7d + 33deaee commit 27f7d7b

1 file changed

Lines changed: 12 additions & 8 deletions

File tree

.circleci/config.yml

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -116,25 +116,29 @@ jobs:
116116
fingerprints:
117117
- e3:44:16:ec:72:df:ae:59:82:c2:ee:57:4a:52:71:aa
118118
- checkout
119-
- run:
120-
name: Install pip Kipoi
121-
command: pip install git+https://github.com/kipoi/kipoi@master
122-
- run:
123-
name: Install pip kipoiseq
124-
command: pip install -e .
119+
- *update_conda
120+
- *create_env
121+
- *install_conda_deps
122+
- *install_kipoi
123+
- *install_kipoiseq
125124
- run:
126125
name: Install build deps
127-
command: pip install nbconvert mkdocs git+https://github.com/kipoi/pydoc-markdown@master
126+
command: |
127+
source activate kipoi-dev
128+
pip install nbconvert mkdocs git+https://github.com/kipoi/pydoc-markdown@master
128129
- run:
129130
name: Build docs
130131
command: |
132+
source activate kipoi-dev
131133
cd docs/
132134
mkdir -p theme_dir/img/ipynb/
133135
./render_ipynb.bash
134136
pydocmd build
135137
- run:
136138
name: Deploy docs
137-
command: .circleci/deploy_docs.bash
139+
command: |
140+
source activate kipoi-dev
141+
.circleci/deploy_docs.bash
138142
139143
workflows:
140144
version: 2

0 commit comments

Comments
 (0)