From 7a4b438dc6f9a82dbe86699cff7c035b014d96e0 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 25 Jan 2019 14:08:19 +0530 Subject: [PATCH] Get basic build going --- .circleci/config.yml | 4 +++- .circleci/images/Dockerfile | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index b6f73c6b4..2e977af58 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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 diff --git a/.circleci/images/Dockerfile b/.circleci/images/Dockerfile index 22e4606f4..a99f75b7f 100644 --- a/.circleci/images/Dockerfile +++ b/.circleci/images/Dockerfile @@ -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