You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by jr...@apache.org on 2018/04/21 21:27:45 UTC

qpid-python git commit: QPID-8170: Add build and install stages

Repository: qpid-python
Updated Branches:
  refs/heads/master 4c5acad17 -> df6823853


QPID-8170: Add build and install stages


Project: http://git-wip-us.apache.org/repos/asf/qpid-python/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-python/commit/df682385
Tree: http://git-wip-us.apache.org/repos/asf/qpid-python/tree/df682385
Diff: http://git-wip-us.apache.org/repos/asf/qpid-python/diff/df682385

Branch: refs/heads/master
Commit: df68238537c725093128a8da18a23c39afdef959
Parents: 4c5acad
Author: Justin Ross <jr...@apache.org>
Authored: Sat Apr 21 14:27:18 2018 -0700
Committer: Justin Ross <jr...@apache.org>
Committed: Sat Apr 21 14:27:18 2018 -0700

----------------------------------------------------------------------
 Jenkinsfile | 10 ++++++++++
 1 file changed, 10 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-python/blob/df682385/Jenkinsfile
----------------------------------------------------------------------
diff --git a/Jenkinsfile b/Jenkinsfile
index c04afbd..e21eca2 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -1,10 +1,20 @@
 pipeline {
     agent any
     stages {
+        stage('build') {
+            steps {
+                sh 'python setup.py build'
+            }
+        }
         stage('test') {
             steps {
                 sh 'python qpid-python-test -i "*ErrorCallbackTests*" -i "*SelectorTests*" -i "*SetupTests*"'
             }
         }
+        stage('install') {
+            steps {
+                sh 'python setup.py install --prefix install'
+            }
+        }
     }
 }


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org