ฉันเดาว่ากระทู้นี้ค่อนข้างเก่า แต่นี่คือสิ่งที่ฉันใช้กับฮัดสัน:
ฉันตัดสินใจใช้ pip และตั้งค่า repo (คนที่เจ็บปวดในการทำงาน แต่ตะกร้าไข่ที่ดูดี) ซึ่งฮัดสันอัปโหลดอัตโนมัติด้วยการทดสอบที่ประสบความสำเร็จ นี่คือสคริปต์คร่าวๆและพร้อมสำหรับการใช้งานกับสคริปต์ดำเนินการกำหนดค่าฮัดสันเช่น: /var/lib/hudson/venv/main/bin/hudson_script.py -w $ WORKSPACE -p my.package -v $ BUILD_NUMBER เพียงแค่ใส่เข้าไป ** / coverage.xml, pylint.txt และ nosetests.xml ใน config bits:
#!/var/lib/hudson/venv/main/bin/python
import os
import re
import subprocess
import logging
import optparse
logging.basicConfig(level=logging.INFO,
format='%(asctime)s %(levelname)s %(message)s')
#venvDir = "/var/lib/hudson/venv/main/bin/"
UPLOAD_REPO = "http://ldndev01:3442"
def call_command(command, cwd, ignore_error_code=False):
try:
logging.info("Running: %s" % command)
status = subprocess.call(command, cwd=cwd, shell=True)
if not ignore_error_code and status != 0:
raise Exception("Last command failed")
return status
except:
logging.exception("Could not run command %s" % command)
raise
def main():
usage = "usage: %prog [options]"
parser = optparse.OptionParser(usage)
parser.add_option("-w", "--workspace", dest="workspace",
help="workspace folder for the job")
parser.add_option("-p", "--package", dest="package",
help="the package name i.e., back_office.reconciler")
parser.add_option("-v", "--build_number", dest="build_number",
help="the build number, which will get put at the end of the package version")
options, args = parser.parse_args()
if not options.workspace or not options.package:
raise Exception("Need both args, do --help for info")
venvDir = options.package + "_venv/"
#find out if venv is there
if not os.path.exists(venvDir):
#make it
call_command("virtualenv %s --no-site-packages" % venvDir,
options.workspace)
#install the venv/make sure its there plus install the local package
call_command("%sbin/pip install -e ./ --extra-index %s" % (venvDir, UPLOAD_REPO),
options.workspace)
#make sure pylint, nose and coverage are installed
call_command("%sbin/pip install nose pylint coverage epydoc" % venvDir,
options.workspace)
#make sure we have an __init__.py
#this shouldn't be needed if the packages are set up correctly
#modules = options.package.split(".")
#if len(modules) > 1:
# call_command("touch '%s/__init__.py'" % modules[0],
# options.workspace)
#do the nosetests
test_status = call_command("%sbin/nosetests %s --with-xunit --with-coverage --cover-package %s --cover-erase" % (venvDir,
options.package.replace(".", "/"),
options.package),
options.workspace, True)
#produce coverage report -i for ignore weird missing file errors
call_command("%sbin/coverage xml -i" % venvDir,
options.workspace)
#move it so that the code coverage plugin can find it
call_command("mv coverage.xml %s" % (options.package.replace(".", "/")),
options.workspace)
#run pylint
call_command("%sbin/pylint --rcfile ~/pylint.rc -f parseable %s > pylint.txt" % (venvDir,
options.package),
options.workspace, True)
#remove old dists so we only have the newest at the end
call_command("rm -rfv %s" % (options.workspace + "/dist"),
options.workspace)
#if the build passes upload the result to the egg_basket
if test_status == 0:
logging.info("Success - uploading egg")
upload_bit = "upload -r %s/upload" % UPLOAD_REPO
else:
logging.info("Failure - not uploading egg")
upload_bit = ""
#create egg
call_command("%sbin/python setup.py egg_info --tag-build=.0.%s --tag-svn-revision --tag-date sdist %s" % (venvDir,
options.build_number,
upload_bit),
options.workspace)
call_command("%sbin/epydoc --html --graph all %s" % (venvDir, options.package),
options.workspace)
logging.info("Complete")
if __name__ == "__main__":
main()
เมื่อพูดถึงการปรับใช้สิ่งต่างๆคุณสามารถทำสิ่งต่างๆเช่น:
pip -E /location/of/my/venv/ install my_package==X.Y.Z --extra-index http://my_repo
จากนั้นผู้คนสามารถพัฒนาสิ่งต่างๆโดยใช้:
pip -E /location/of/my/venv/ install -e ./ --extra-index http://my_repo
สิ่งนี้ถือว่าคุณมีโครงสร้าง repo ต่อแพ็คเกจที่มีการตั้งค่า setup.py และการอ้างอิงทั้งหมดจากนั้นคุณสามารถตรวจสอบลำต้นและเรียกใช้สิ่งนี้ได้
ฉันหวังว่านี่จะช่วยใครบางคนได้
------ ปรับปรุง ---------
ฉันได้เพิ่ม epydoc ซึ่งเข้ากันได้ดีกับฮัดสัน เพียงเพิ่ม javadoc ใน config ของคุณด้วยโฟลเดอร์ html
โปรดทราบว่า pip ไม่สนับสนุนแฟล็ก -E อย่างถูกต้องในปัจจุบันดังนั้นคุณต้องสร้าง venv แยกกัน