Get basic build going

This commit is contained in:
Kovid Goyal 2019-01-25 14:08:19 +05:30
parent 1a29de5ac9
commit 7a4b438dc6
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 4 additions and 2 deletions

View File

@ -6,7 +6,9 @@ jobs:
steps:
- checkout
- 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 .
- run: python3 -m flake8 --count .
- run: python3 setup.py build --debug --verbose
- run: python3 test.py
workflows:
version: 2

View File

@ -1,6 +1,6 @@
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 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 python3-pil clang
RUN pip3 install sphinx