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:
- ./bin/buildout
- ./bin/python --version
- unset TMPDIR
- cd src/cpulimit && make && cd -
- cd bin && ln -s ../src/cpulimit/src/cpulimit . && cd -
- export NOSE_WITH_COVERAGE=1
- export NOSE_COVER_PACKAGE=beat.cmdline
- ./bin/nosetests -sv
......@@ -22,8 +20,6 @@ py27-macosx:
- /Users/buildbot/work/environments/beat/py27/bin/python bootstrap-buildout.py
- ./bin/buildout
- ./bin/python --version
- cd src/cpulimit && make && cd -
- cd bin && ln -s ../src/cpulimit/src/cpulimit . && cd -
- export NOSE_WITH_COVERAGE=1
- export NOSE_COVER_PACKAGE=beat.cmdline
- ./bin/nosetests -sv
......
......@@ -3,7 +3,7 @@
; Tue 02 Jun 2015 13:05:59 CEST
[buildout]
parts = scripts
parts = scripts cpulimit
extensions = mr.developer
auto-checkout = *
develop = .
......@@ -13,9 +13,17 @@ eggs = beat.cmdline
ipdb
[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
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]
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