mirror of
https://github.com/kovidgoyal/kitty.git
synced 2024-11-13 12:09:35 +03:00
Get basic build going
This commit is contained in:
parent
1a29de5ac9
commit
7a4b438dc6
@ -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
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user