QPID-8170: Add build and install stages
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'
+            }
+        }
     }
 }