Repository: qpid-python Updated Branches: refs/heads/master 991d03183 -> 4c5acad17
QPID-8170: Add a basic Jenkinsfile for a CI job Project: http://git-wip-us.apache.org/repos/asf/qpid-python/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-python/commit/4c5acad1 Tree: http://git-wip-us.apache.org/repos/asf/qpid-python/tree/4c5acad1 Diff: http://git-wip-us.apache.org/repos/asf/qpid-python/diff/4c5acad1 Branch: refs/heads/master Commit: 4c5acad17b023c8dddbffabd05fa36360aac29ee Parents: 991d031 Author: Justin Ross <[email protected]> Authored: Sat Apr 21 14:11:30 2018 -0700 Committer: Justin Ross <[email protected]> Committed: Sat Apr 21 14:11:30 2018 -0700 ---------------------------------------------------------------------- Jenkinsfile | 10 ++++++++++ 1 file changed, 10 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-python/blob/4c5acad1/Jenkinsfile ---------------------------------------------------------------------- diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..c04afbd --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,10 @@ +pipeline { + agent any + stages { + stage('test') { + steps { + sh 'python qpid-python-test -i "*ErrorCallbackTests*" -i "*SelectorTests*" -i "*SetupTests*"' + } + } + } +} --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
