File tree Expand file tree Collapse file tree 3 files changed +12
-1
lines changed
Expand file tree Collapse file tree 3 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 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"
Original file line number Diff line number Diff line change @@ -118,7 +118,8 @@ XPI_NAME="pkg/$APP_NAME-`grep em:version src/install.rdf | sed -e 's/[<>]/ /g' |
118118if [ " $1 " ] && [ " $1 " != " --fast" ] ; then
119119 XPI_NAME=" $XPI_NAME .xpi"
120120else
121- XPI_NAME=" $XPI_NAME ~pre.xpi"
121+ # During development, generate packages named with the short hash of HEAD.
122+ XPI_NAME=" $XPI_NAME ~` git rev-parse --short HEAD` .xpi"
122123fi
123124
124125[ -d pkg ] || mkdir pkg
Original file line number Diff line number Diff line change 1+ lxml >= 3.3.3
You can’t perform that action at this time.
0 commit comments