autoproj-jenkins 0.3.6 → 0.3.7
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a79fa49f8d46242936996f1c0fe7650a60e11ab4
|
4
|
+
data.tar.gz: 02033a5d2c85b32336cc9ab0aa9988147622b1a9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ed9114e1004fca7fc12295ebf65375bc510cdfdc2db2c354a58ff943a32aad516883bab10e5eba9a4faaa19c5431c192ed6356719ad02fc14a156b1d89d8aa7d
|
7
|
+
data.tar.gz: ce7cd0242e7687349399fb8c93a4f723c739bda3d2a840f2391aba262a037aa5b83d5f336233cd79ef7341d309667ba41796af298becdcdcefc7e68de551b8d4
|
@@ -125,15 +125,7 @@ def waitForUpstreamBuilds(upstreamBuilds)
|
|
125
125
|
return true;
|
126
126
|
}
|
127
127
|
|
128
|
-
|
129
|
-
{
|
130
|
-
currentBuild.result = 'NOT_BUILT';
|
131
|
-
return false;
|
132
|
-
}
|
133
|
-
else
|
134
|
-
{
|
135
|
-
return true;
|
136
|
-
}
|
128
|
+
return !skipBuild
|
137
129
|
}
|
138
130
|
|
139
131
|
def makeUpstreamArtifactImporters(autoproj, fullWorkspaceDir, upstreamDir,
|
@@ -18,13 +18,14 @@ stage('waiting for upstream jobs to finish') {
|
|
18
18
|
triggerBuild = [null, null];
|
19
19
|
}
|
20
20
|
|
21
|
-
|
21
|
+
upstreamBuilds = getUpstreamBuilds(upstreamJobNames, triggerBuild[0], triggerBuild[1])
|
22
22
|
if (!upstreamBuilds)
|
23
23
|
{
|
24
24
|
currentBuild.result = 'NOT_BUILT';
|
25
25
|
return;
|
26
26
|
}
|
27
27
|
if (!waitForUpstreamBuilds(upstreamBuilds)) {
|
28
|
+
currentBuild.result = 'NOT_BUILT';
|
28
29
|
return
|
29
30
|
}
|
30
31
|
}
|