From 05ffd3f69109502d2f73005ffbd2e24a113bd089 Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Thu, 18 Jan 2018 02:07:14 -0500 Subject: [PATCH] add libembroidery to travis build --- .travis.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.travis.yml b/.travis.yml index 051b401cb..a296eea1a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -34,6 +34,9 @@ install: # for wxPython sudo apt-get install glib-networking + # for embroidermodder/libembroidery + sudo apt-get install git swig python-dev + # This is the same as the pypi module PyGObject. We can't just do # "pip install PyGObject" because it depends on a version of # libgirepository1.0-dev that doesn't exist in Trusty. @@ -60,6 +63,11 @@ script: flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics elif [ -n "$BUILD" ]; then + ( + cd embroidermodder/experimental + qmake swigpython.pro + make + ) make dist else true