This is an automated email from the ASF dual-hosted git repository.
warren pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-devlake.git
from 53f8ef9f fix(jira): add board id filter (#2210)
new 0e5fede4 feat: multi-data connections support for Jenkins
new 65fa5051 feat: jenkins add e2e test for jobs and builds
new d210d052 feat: add docs about multi-data connections support for
Jenkins
new 6087c03f feat: jenkins add e2e test for jobs and builds
new c2845804 feat: multi-data connections support for Jenkins
The 5 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
models/migrationscripts/register.go | 4 +-
...Schemas20220510.go => updateSchemas20220612.go} | 23 +++---
plugins/jenkins/README.md | 33 ++++----
plugins/jenkins/api/connection.go | 91 +++++++++++-----------
plugins/{gitlab => jenkins}/api/init.go | 0
plugins/jenkins/e2e/builds_test.go | 91 ++++++++++++++++++++++
plugins/jenkins/e2e/jobs_test.go | 81 +++++++++++++++++++
.../jenkins/e2e/tables/_raw_jenkins_api_builds.csv | 21 +++++
.../jenkins/e2e/tables/_raw_jenkins_api_jobs.csv | 12 +++
.../jenkins/e2e/tables/_tool_jenkins_builds.csv | 21 +++++
plugins/jenkins/e2e/tables/_tool_jenkins_jobs.csv | 12 +++
plugins/jenkins/e2e/tables/builds.csv | 21 +++++
plugins/jenkins/e2e/tables/jobs.csv | 12 +++
plugins/jenkins/{jenkins.go => impl/impl.go} | 53 ++++++++-----
plugins/jenkins/jenkins.go | 83 ++------------------
plugins/jenkins/models/build.go | 30 +++----
plugins/jenkins/models/connection.go | 12 ++-
plugins/jenkins/models/job.go | 10 ++-
.../models/migrationscripts/archived/build.go | 15 ++--
.../{ => migrationscripts/archived}/connection.go | 33 ++++++--
.../models/migrationscripts/archived/job.go | 10 ++-
.../jenkins/models/migrationscripts/init_schema.go | 45 ++++++++++-
plugins/jenkins/tasks/build_collector.go | 19 ++++-
plugins/jenkins/tasks/build_convertor.go | 23 ++++--
plugins/jenkins/tasks/build_extractor.go | 12 ++-
plugins/jenkins/tasks/client.go | 32 ++------
plugins/jenkins/tasks/job_collector.go | 9 +--
plugins/jenkins/tasks/job_convertor.go | 25 ++++--
plugins/jenkins/tasks/job_extractor.go | 12 ++-
plugins/jenkins/tasks/task_data.go | 20 +++--
30 files changed, 586 insertions(+), 279 deletions(-)
copy models/migrationscripts/{updateSchemas20220510.go =>
updateSchemas20220612.go} (69%)
copy plugins/{gitlab => jenkins}/api/init.go (100%)
create mode 100644 plugins/jenkins/e2e/builds_test.go
create mode 100644 plugins/jenkins/e2e/jobs_test.go
create mode 100644 plugins/jenkins/e2e/tables/_raw_jenkins_api_builds.csv
create mode 100644 plugins/jenkins/e2e/tables/_raw_jenkins_api_jobs.csv
create mode 100644 plugins/jenkins/e2e/tables/_tool_jenkins_builds.csv
create mode 100644 plugins/jenkins/e2e/tables/_tool_jenkins_jobs.csv
create mode 100644 plugins/jenkins/e2e/tables/builds.csv
create mode 100644 plugins/jenkins/e2e/tables/jobs.csv
copy plugins/jenkins/{jenkins.go => impl/impl.go} (75%)
copy plugins/jenkins/models/{ => migrationscripts/archived}/connection.go (57%)