Skip to content
Snippets Groups Projects
Commit 18fe13da authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

[buildout,ci] Move cpulimit build into buildout

parent 085594b0
No related branches found
No related tags found
1 merge request!7Gevent
Pipeline #
...@@ -6,8 +6,6 @@ py27-linux: ...@@ -6,8 +6,6 @@ py27-linux:
- ./bin/buildout - ./bin/buildout
- ./bin/python --version - ./bin/python --version
- unset TMPDIR - unset TMPDIR
- cd src/cpulimit && make && cd -
- cd bin && ln -s ../src/cpulimit/src/cpulimit . && cd -
- export NOSE_WITH_COVERAGE=1 - export NOSE_WITH_COVERAGE=1
- export NOSE_COVER_PACKAGE=beat.cmdline - export NOSE_COVER_PACKAGE=beat.cmdline
- ./bin/nosetests -sv - ./bin/nosetests -sv
...@@ -22,8 +20,6 @@ py27-macosx: ...@@ -22,8 +20,6 @@ py27-macosx:
- /Users/buildbot/work/environments/beat/py27/bin/python bootstrap-buildout.py - /Users/buildbot/work/environments/beat/py27/bin/python bootstrap-buildout.py
- ./bin/buildout - ./bin/buildout
- ./bin/python --version - ./bin/python --version
- cd src/cpulimit && make && cd -
- cd bin && ln -s ../src/cpulimit/src/cpulimit . && cd -
- export NOSE_WITH_COVERAGE=1 - export NOSE_WITH_COVERAGE=1
- export NOSE_COVER_PACKAGE=beat.cmdline - export NOSE_COVER_PACKAGE=beat.cmdline
- ./bin/nosetests -sv - ./bin/nosetests -sv
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
; Tue 02 Jun 2015 13:05:59 CEST ; Tue 02 Jun 2015 13:05:59 CEST
[buildout] [buildout]
parts = scripts parts = scripts cpulimit
extensions = mr.developer extensions = mr.developer
auto-checkout = * auto-checkout = *
develop = . develop = .
...@@ -13,9 +13,17 @@ eggs = beat.cmdline ...@@ -13,9 +13,17 @@ eggs = beat.cmdline
ipdb ipdb
[sources] [sources]
beat.core = git git@gitlab.idiap.ch:beat/beat.core beat.core = git git@gitlab.idiap.ch:beat/beat.core branch=gevent
beat.backend.python = git git@gitlab.idiap.ch:beat/beat.backend.python beat.backend.python = git git@gitlab.idiap.ch:beat/beat.backend.python
cpulimit = git https://github.com/opsengine/cpulimit rev=v0.2 egg=false cpulimit = git https://github.com/opsengine/cpulimit rev=v0.2 egg=false
[cpulimit]
recipe = collective.recipe.cmd
cmds = make -C src/cpulimit
cd bin && ln -s ../src/cpulimit/src/cpulimit && cd ..
uninstall_cmds = rm -f bin/cpulimit
on_install = true
on_update = true
[scripts] [scripts]
recipe = bob.buildout:scripts recipe = bob.buildout:scripts
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment