From 863e8a751d454339e1812e9169cc754c692f0136 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Thu, 28 Feb 2013 10:13:07 +0100 Subject: [PATCH 1/4] add jenkins integration --- jenkins-base.cfg | 23 +++++++++++++++++++++++ jenkins.cfg | 3 +++ 2 files changed, 26 insertions(+) create mode 100644 jenkins-base.cfg create mode 100644 jenkins.cfg diff --git a/jenkins-base.cfg b/jenkins-base.cfg new file mode 100644 index 0000000..4010089 --- /dev/null +++ b/jenkins-base.cfg @@ -0,0 +1,23 @@ +[buildout] +extends = + buildout.cfg + https://raw.github.com/plone/buildout.jenkins/master/jenkins.cfg + https://raw.github.com/plone/buildout.jenkins/master/jenkins-code-analysis.cfg + +jenkins-test-eggs = ${buildout:package-name} ${buildout:package-extras} + +parts += pylint + +[pylint] +recipe = zc.recipe.egg +eggs = pylint + ${buildout:eggs} +scripts = pylint +entry-points = pylint=pylint.lint:Run +arguments = [ + '--output-format=parseable', + '--zope=y', + '--reports=y', + '--disable=E0611,F0401,W0232,E1101,C0103,C0111,R0201,W0201,R0911,R0904,F0220,E1103,R0901,E0211,E0213,E1002,W0622,C0301,W0212,R0903', + '--generated-members=objects', + ] + (sys.argv[1:] or ["${buildout:jenkins-test-directories}"]) diff --git a/jenkins.cfg b/jenkins.cfg new file mode 100644 index 0000000..361112e --- /dev/null +++ b/jenkins.cfg @@ -0,0 +1,3 @@ +[buildout] +extends = jenkins-base.cfg +jenkins-test-directories = src/collective/dms/mailcontent From 8d68886fd86d05c35beffff5f36f8dd75cf259d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Thu, 28 Feb 2013 10:22:18 +0100 Subject: [PATCH 2/4] add collective.contact.widget to sources.cfg --- sources.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/sources.cfg b/sources.cfg index cc5b417..43a662f 100644 --- a/sources.cfg +++ b/sources.cfg @@ -14,6 +14,7 @@ entrouvert_push = git+ssh://git@repos.entrouvert.org [sources] collective.contact.core = git ${remotes:collective}/collective.contact.core.git pushurl=${remotes:collective_push}/collective.contact.core.git +collective.contact.widget = git ${remotes:collective}/collective.contact.widget.git pushurl=${remotes:collective_push}/collective.contact.widget.git collective.dms.basecontent = git ${remotes:collective}/collective.dms.basecontent.git pushurl=${remotes:collective_push}/collective.dms.basecontent.git collective.dms.mailcontent = git ${remotes:collective}/collective.dms.mailcontent.git pushurl=${remotes:collective_push}/collective.dms.mailcontent.git plone.formwidget.masterselect = git ${remotes:cedricmessiant}/plone.formwidget.masterselect.git pushurl=${remotes:cedricmessiant_push}/plone.formwidget.masterselect.git From 9161be23e7199fd7bc1109fc7f181b3fba3e2423 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Thu, 28 Feb 2013 15:39:34 +0100 Subject: [PATCH 3/4] add checking out of a few modules --- checkouts.cfg | 3 +++ sources.cfg | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/checkouts.cfg b/checkouts.cfg index a8d2376..918a072 100644 --- a/checkouts.cfg +++ b/checkouts.cfg @@ -5,7 +5,10 @@ extends = always-checkout = force auto-checkout += collective.contact.core + collective.contact.widget collective.dms.basecontent plone.app.dexterity plone.dexterity plone.formwidget.masterselect + z3c.form + plone.app.z3cform diff --git a/sources.cfg b/sources.cfg index 43a662f..315cc1c 100644 --- a/sources.cfg +++ b/sources.cfg @@ -11,6 +11,8 @@ cedricmessiant = git://github.com/cedricmessiant cedricmessiant_push = git@github.com:cedricmessiant entrouvert = git://repos.entrouvert.org entrouvert_push = git+ssh://git@repos.entrouvert.org +zopefoundation = git://github.com/zopefoundation +zopefoundation_push = git@github.com:zopefoundation [sources] collective.contact.core = git ${remotes:collective}/collective.contact.core.git pushurl=${remotes:collective_push}/collective.contact.core.git @@ -18,3 +20,5 @@ collective.contact.widget = git ${remotes:collective}/collective.contact.widget. collective.dms.basecontent = git ${remotes:collective}/collective.dms.basecontent.git pushurl=${remotes:collective_push}/collective.dms.basecontent.git collective.dms.mailcontent = git ${remotes:collective}/collective.dms.mailcontent.git pushurl=${remotes:collective_push}/collective.dms.mailcontent.git plone.formwidget.masterselect = git ${remotes:cedricmessiant}/plone.formwidget.masterselect.git pushurl=${remotes:cedricmessiant_push}/plone.formwidget.masterselect.git +plone.app.z3cform = git ${remotes:plone}/plone.app.z3cform.git pushurl=${remotes:plone_push}/plone.app.z3cform.git +z3c.form = git ${remotes:zopefoundation}/z3c.form pushurl=${remotes:zopefoundation_push}/z3c.form From 560e321bc36087e71c67f63275b3ff0b31b427da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Thu, 28 Feb 2013 15:50:24 +0100 Subject: [PATCH 4/4] add checkout of collective.dms.thesaurus --- checkouts.cfg | 1 + sources.cfg | 1 + 2 files changed, 2 insertions(+) diff --git a/checkouts.cfg b/checkouts.cfg index 918a072..4dcedbb 100644 --- a/checkouts.cfg +++ b/checkouts.cfg @@ -7,6 +7,7 @@ auto-checkout += collective.contact.core collective.contact.widget collective.dms.basecontent + collective.dms.thesaurus plone.app.dexterity plone.dexterity plone.formwidget.masterselect diff --git a/sources.cfg b/sources.cfg index 315cc1c..f989afb 100644 --- a/sources.cfg +++ b/sources.cfg @@ -19,6 +19,7 @@ collective.contact.core = git ${remotes:collective}/collective.contact.core.git collective.contact.widget = git ${remotes:collective}/collective.contact.widget.git pushurl=${remotes:collective_push}/collective.contact.widget.git collective.dms.basecontent = git ${remotes:collective}/collective.dms.basecontent.git pushurl=${remotes:collective_push}/collective.dms.basecontent.git collective.dms.mailcontent = git ${remotes:collective}/collective.dms.mailcontent.git pushurl=${remotes:collective_push}/collective.dms.mailcontent.git +collective.dms.thesaurus = git ${remotes:collective}/collective.dms.thesaurus.git pushurl=${remotes:collective_push}/collective.dms.thesaurus.git plone.formwidget.masterselect = git ${remotes:cedricmessiant}/plone.formwidget.masterselect.git pushurl=${remotes:cedricmessiant_push}/plone.formwidget.masterselect.git plone.app.z3cform = git ${remotes:plone}/plone.app.z3cform.git pushurl=${remotes:plone_push}/plone.app.z3cform.git z3c.form = git ${remotes:zopefoundation}/z3c.form pushurl=${remotes:zopefoundation_push}/z3c.form