1 parent aa7e653 commit 73fbce0Copy full SHA for 73fbce0
3 files changed
.travis.yml
@@ -0,0 +1,9 @@
1
+language: python
2
+python:
3
+ - "2.7"
4
+before_install:
5
+ - "sudo apt-get -qq update"
6
+install:
7
+ - "sudo apt-get -qq install libxml2-dev libxslt-dev python-dev"
8
+ - "pip install -r requirements.txt"
9
+script: "./run-tests.sh"
makexpi.sh
@@ -118,7 +118,8 @@ XPI_NAME="pkg/$APP_NAME-`grep em:version src/install.rdf | sed -e 's/[<>]/ /g' |
118
if [ "$1" ] && [ "$1" != "--fast" ] ; then
119
XPI_NAME="$XPI_NAME.xpi"
120
else
121
- XPI_NAME="$XPI_NAME~pre.xpi"
+ # During development, generate packages named with the short hash of HEAD.
122
+ XPI_NAME="$XPI_NAME~`git rev-parse --short HEAD`.xpi"
123
fi
124
125
[ -d pkg ] || mkdir pkg
requirements.txt
@@ -0,0 +1 @@
+lxml>=3.3.3
0 commit comments