|
3 | 3 |
|
4 | 4 | import com.dabsquared.gitlabjenkins.cause.CauseData;
|
5 | 5 | import com.dabsquared.gitlabjenkins.cause.GitLabWebHookCause;
|
6 |
| -import com.dabsquared.gitlabjenkins.connection.GitLabConnection; |
7 | 6 | import com.dabsquared.gitlabjenkins.connection.GitLabConnectionProperty;
|
8 | 7 | import com.dabsquared.gitlabjenkins.gitlab.api.GitLabClient;
|
9 | 8 | import com.dabsquared.gitlabjenkins.gitlab.api.model.BuildState;
|
10 | 9 | import com.dabsquared.gitlabjenkins.workflow.GitLabBranchBuild;
|
11 | 10 | import hudson.EnvVars;
|
12 | 11 | import hudson.model.*;
|
13 |
| -import hudson.model.Cause.UpstreamCause; |
14 | 12 | import hudson.plugins.git.Revision;
|
15 | 13 | import hudson.plugins.git.util.Build;
|
16 | 14 | import hudson.plugins.git.util.BuildData;
|
@@ -242,23 +240,14 @@ private static void addGitLabBranchBuild(List<GitLabBranchBuild> result, String
|
242 | 240 | }
|
243 | 241 |
|
244 | 242 | private static List<GitLabBranchBuild> findBuildsFromUpstreamCauses(List<Cause> causes) {
|
245 |
| - for (Cause cause : causes) { |
246 |
| - if (cause instanceof UpstreamCause) { |
247 |
| - List<Cause> upCauses = ((UpstreamCause) cause).getUpstreamCauses(); // Non null, returns empty list when none are set |
248 |
| - for (Cause upCause : upCauses) { |
249 |
| - if (upCause instanceof GitLabWebHookCause) { |
250 |
| - GitLabWebHookCause gitlabCause = (GitLabWebHookCause) upCause; |
251 |
| - return Collections.singletonList( |
252 |
| - new GitLabBranchBuild(gitlabCause.getData().getSourceProjectId().toString(), |
253 |
| - gitlabCause.getData().getLastCommit())); |
254 |
| - } |
255 |
| - } |
256 |
| - List<GitLabBranchBuild> builds = findBuildsFromUpstreamCauses(upCauses); |
257 |
| - if (!builds.isEmpty()) { |
258 |
| - return builds; |
259 |
| - } |
260 |
| - } |
| 243 | + |
| 244 | + GitLabWebHookCause gitlabCause = CauseUtil.findCauseFromUpstreamCauses(causes, GitLabWebHookCause.class); |
| 245 | + |
| 246 | + if (gitlabCause != null) { |
| 247 | + return Collections.singletonList( |
| 248 | + new GitLabBranchBuild(gitlabCause.getData().getSourceProjectId().toString(), gitlabCause.getData().getLastCommit())); |
261 | 249 | }
|
| 250 | + |
262 | 251 | return Collections.emptyList();
|
263 | 252 | }
|
264 | 253 |
|
|
0 commit comments