Recommend JJB 1.4.0 27/31627/5
authorThanh Ha <thanh.ha@linuxfoundation.org>
Fri, 18 Dec 2015 23:14:13 +0000 (18:14 -0500)
committerThanh Ha <thanh.ha@linuxfoundation.org>
Mon, 11 Jan 2016 21:07:33 +0000 (16:07 -0500)
Change-Id: Iadc186842da3bda9e21c52ec3ad52cb6c6651595
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
jjb/requirements.txt
src/site/markdown/jenkins.md

index 0a4df2c2a575eb10d3abddb0fb2f4d048645e378..2b678f46341d3fb167502018ee5236d4865ed6a3 100644 (file)
@@ -1,2 +1 @@
-python-jenkins==0.4.6
-jenkins-job-builder==1.3.0
+jenkins-job-builder==1.4.0
index d1540a6877a1b245bda8fca0cc09eefe2657cd19..da15039ad1bffd4de30bbc20804b8c03a0a0c18b 100644 (file)
@@ -368,10 +368,10 @@ to install from the latest commit to the master branch of JJB's git repository:
     $ cat jjb/requirements.txt
     -e git+https://git.openstack.org/openstack-infra/jenkins-job-builder#egg=jenkins-job-builder
 
-To install from a tag, like 1.3.0:
+To install from a tag, like 1.4.0:
 
     $ cat jjb/requirements.txt
-    -e git+https://git.openstack.org/openstack-infra/jenkins-job-builder@1.3.0#egg=jenkins-job-builder
+    -e git+https://git.openstack.org/openstack-infra/jenkins-job-builder@1.4.0#egg=jenkins-job-builder
 
 #### <a name="jjb_install_manual">Installing JJB Manually</a>
 
@@ -385,11 +385,11 @@ For example, using master:
 
     $ git clone https://git.openstack.org/openstack-infra/jenkins-job-builder
 
-Using a tag, like 1.3.0:
+Using a tag, like 1.4.0:
 
     $ git clone https://git.openstack.org/openstack-infra/jenkins-job-builder
     $ cd jenkins-job-builder
-    $ git checkout tags/1.3.0
+    $ git checkout tags/1.4.0
 
 Before actually installing JJB and its dependencies, make sure you've [created
 and activated](#jjb_install_venv) a virtual environment for JJB.
@@ -405,7 +405,8 @@ dependences.
 Finally, install JJB.
 
     # In the cloned JJB repo, with the desired version of the code checked out
-    (jjb)$ python setup.py install
+    (jjb)$ python setup.py sdist
+    (jjb)$ pip install dist/jenkins-job-builder-*.tar.gz
 
 Note that we're not using `sudo` to install as root, since we want to make
 use of the venv we've configured for our current user.