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 <[email protected]> Authored: Sat Apr 21 14:27:18 2018 -0700 Committer: Justin Ross <[email protected]> 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: [email protected] For additional commands, e-mail: [email protected]
