Skip to content

Commit

Permalink
Merge pull request #60 from prymitive/travisci
Browse files Browse the repository at this point in the history
removed python2.5 from build
  • Loading branch information
unbit committed Nov 23, 2012
2 parents 25db778 + 5d253ab commit 49dd336
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
5 changes: 1 addition & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@ compiler:
script:
- echo -e "\n\n>>> Building uWSGI binary"
- /usr/bin/python uwsgiconfig.py --build base
- echo -e "\n\n>>> Building python25 plugin"
- /usr/bin/python2.5 -V
- /usr/bin/python2.5 uwsgiconfig.py --plugin plugins/python base python25
- echo -e "\n\n>>> Building python26 plugin"
- /usr/bin/python2.6 -V
- /usr/bin/python2.6 uwsgiconfig.py --plugin plugins/python base python26
Expand Down Expand Up @@ -41,7 +38,7 @@ script:
before_install:
- sudo add-apt-repository -y ppa:fkrull/deadsnakes
- sudo apt-get update -qq
- sudo apt-get install -qqyf python2.5-dev python2.6-dev python2.7-dev python3.1-dev python3.2-dev python3.3-dev rubygems1.8 ruby1.8-dev ruby1.9.1-dev
- sudo apt-get install -qqyf python2.6-dev python2.7-dev python3.1-dev python3.2-dev python3.3-dev rubygems1.8 ruby1.8-dev ruby1.9.1-dev
- sudo apt-get install -qqyf libxml2-dev libpcre3-dev libcap2-dev
- sudo apt-get install -qqyf curl

4 changes: 2 additions & 2 deletions tests/travis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -95,12 +95,12 @@ test_rack() {

while read PV ; do
test_python $PV
done < <(cat .travis.yml | grep "plugins/python base" | awk '{print $7}')
done < <(cat .travis.yml | grep "plugins/python base" | sed s_".*plugins/python base "_""_g)


while read RV ; do
test_rack $RV
done < <(cat .travis.yml | grep "plugins/rack base" | awk '{print $8}')
done < <(cat .travis.yml | grep "plugins/rack base" | sed s_".*plugins/rack base "_""_g)


echo "${bldgre}>>> $SUCCESS SUCCESSFUL PLUGIN(S)${txtrst}"
Expand Down

0 comments on commit 49dd336

Please sign in to comment.