8000 Add circleci config yml · lezcano/array-api@58d0f47 · GitHub
[go: up one dir, main page]

Skip to content

Commit 58d0f47

Browse files
committed
Add circleci config yml
1 parent cf5aa66 commit 58d0f47

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.circleci/config.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
version: 2
2+
3+
# Aliases to reuse
4+
_defaults: &defaults
5+
docker:
6+
# CircleCI maintains a library of pre-built images
7+
# documented at https://circleci.com/docs/2.0/circleci-images/
8+
- image: circleci/python:3.7.0
9+
working_directory: ~/repo
10+
11+
jobs:
12+
build_page:
13+
<<: *defaults
14+
steps:
15+
- attach_workspace:
16+
at: ~/
17+
18+
- run:
19+
name: build docs
20+
no_output_timeout: 25m
21+
command: |
22+
pip install -r requirements.txt
23+
sphinx-build -b html -WT --keep-going spec build/latest -d doctrees
24+
- store_artifacts:
25+
path: build/latest

0 commit comments

Comments
 (0)
0