Install sphinx on CircleCI

This commit is contained in:
Kovid Goyal 2019-01-25 12:08:07 +05:30
parent 9fcde9d81d
commit ed8edf3e4c
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 5 additions and 3 deletions

View File

@ -1,9 +1,9 @@
version: 2.0
version: 2
jobs:
build:
linux-system-python:
docker:
- image: kovidgoyal/kitty-test:latest
steps:
- checkout
- run: echo "A first hello"
- run: if grep -Inr '\s$' kitty kitty_tests kittens docs *.py *.asciidoc *.rst .gitattributes .gitignore; then echo Trailing whitespace found, aborting.; exit 1; fi
- run: flake8 --count .

View File

@ -2,5 +2,7 @@ FROM ubuntu:latest
RUN apt-get update && apt-get install -y libgl1-mesa-dev libxi-dev libxrandr-dev libxinerama-dev libxcursor-dev libxcb-xkb-dev libdbus-1-dev libxkbcommon-dev libharfbuzz-dev python3 python3-flake8 python3-pip
RUN pip3 install sphinx
LABEL com.circleci.preserve-entrypoint=true
ENTRYPOINT sleep 2h