mirror of
https://github.com/corda/corda.git
synced 2024-12-19 04:57:58 +00:00
INFRA-965: forward merge from 4.6 2020 11 15 (#6807)
* CORDA-4045 Disable flaky test (#6792) Disable `Restart does not set senderUUID` as it is unstable. * INFRA-965: forward merge from 4.5 (2020-11-15) (#6806) * EG-4168 Updating contributors.md list for OS 4.5 release branch (#6784) * INFRA-965: forward merge from 4.4 (2020-11-14) (#6805) * EG-4168 Updating contributors.md list for OS 4.4 release branch (#6785) * INFRA-965: forward merge from 4.3 (2020-11-13) (#6803) * INFRA-965: Jenkins/NexusIQ integration should target patches (#6802) as well as major/minor releases * Updated nightly builds to match changes for release branch builds * Updated JDK11 builds to match changes for release branch builds Co-authored-by: ivanterziev <61829352+ivanterziev-r3@users.noreply.github.com> * Backporting updates for check-pr-title workflow Co-authored-by: ivanterziev <61829352+ivanterziev-r3@users.noreply.github.com> Co-authored-by: Ross Nicoll <ross.nicoll@r3.com> Co-authored-by: ivanterziev <61829352+ivanterziev-r3@users.noreply.github.com>
This commit is contained in:
parent
d6154ab59e
commit
700cb51091
@ -82,7 +82,7 @@ pipeline {
|
|||||||
script {
|
script {
|
||||||
sh "./gradlew --no-daemon properties | grep -E '^(version|group):' >version-properties"
|
sh "./gradlew --no-daemon properties | grep -E '^(version|group):' >version-properties"
|
||||||
/* every build related to Corda X.Y (GA, RC, HC, patch or snapshot) uses the same NexusIQ application */
|
/* every build related to Corda X.Y (GA, RC, HC, patch or snapshot) uses the same NexusIQ application */
|
||||||
def version = sh (returnStdout: true, script: "grep ^version: version-properties | sed -e 's/^version: \\([0-9]\\+\\.[0-9]\\+\\).*\$/\\1/'").trim()
|
def version = sh (returnStdout: true, script: "grep ^version: version-properties | sed -e 's/^version: \\([0-9]\\+\\(\\.[0-9]\\+\\)\\+\\).*\$/\\1/'").trim()
|
||||||
def groupId = sh (returnStdout: true, script: "grep ^group: version-properties | sed -e 's/^group: //'").trim()
|
def groupId = sh (returnStdout: true, script: "grep ^group: version-properties | sed -e 's/^group: //'").trim()
|
||||||
def artifactId = 'corda'
|
def artifactId = 'corda'
|
||||||
nexusAppId = "${groupId}-${artifactId}-${version}"
|
nexusAppId = "${groupId}-${artifactId}-${version}"
|
||||||
|
@ -67,7 +67,7 @@ pipeline {
|
|||||||
script {
|
script {
|
||||||
sh "./gradlew --no-daemon properties | grep -E '^(version|group):' >version-properties"
|
sh "./gradlew --no-daemon properties | grep -E '^(version|group):' >version-properties"
|
||||||
/* every build related to Corda X.Y (GA, RC, HC, patch or snapshot) uses the same NexusIQ application */
|
/* every build related to Corda X.Y (GA, RC, HC, patch or snapshot) uses the same NexusIQ application */
|
||||||
def version = sh (returnStdout: true, script: "grep ^version: version-properties | sed -e 's/^version: \\([0-9]\\+\\.[0-9]\\+\\).*\$/\\1/'").trim()
|
def version = sh (returnStdout: true, script: "grep ^version: version-properties | sed -e 's/^version: \\([0-9]\\+\\(\\.[0-9]\\+\\)\\+\\).*\$/\\1/'").trim()
|
||||||
def groupId = sh (returnStdout: true, script: "grep ^group: version-properties | sed -e 's/^group: //'").trim()
|
def groupId = sh (returnStdout: true, script: "grep ^group: version-properties | sed -e 's/^group: //'").trim()
|
||||||
def artifactId = 'corda'
|
def artifactId = 'corda'
|
||||||
nexusAppId = "${groupId}-${artifactId}-${version}"
|
nexusAppId = "${groupId}-${artifactId}-${version}"
|
||||||
|
2
.ci/dev/regression/Jenkinsfile
vendored
2
.ci/dev/regression/Jenkinsfile
vendored
@ -100,7 +100,7 @@ pipeline {
|
|||||||
script {
|
script {
|
||||||
sh "./gradlew --no-daemon properties | grep -E '^(version|group):' >version-properties"
|
sh "./gradlew --no-daemon properties | grep -E '^(version|group):' >version-properties"
|
||||||
/* every build related to Corda X.Y (GA, RC, HC, patch or snapshot) uses the same NexusIQ application */
|
/* every build related to Corda X.Y (GA, RC, HC, patch or snapshot) uses the same NexusIQ application */
|
||||||
def version = sh (returnStdout: true, script: "grep ^version: version-properties | sed -e 's/^version: \\([0-9]\\+\\.[0-9]\\+\\).*\$/\\1/'").trim()
|
def version = sh (returnStdout: true, script: "grep ^version: version-properties | sed -e 's/^version: \\([0-9]\\+\\(\\.[0-9]\\+\\)\\+\\).*\$/\\1/'").trim()
|
||||||
def groupId = sh (returnStdout: true, script: "grep ^group: version-properties | sed -e 's/^group: //'").trim()
|
def groupId = sh (returnStdout: true, script: "grep ^group: version-properties | sed -e 's/^group: //'").trim()
|
||||||
def artifactId = 'corda'
|
def artifactId = 'corda'
|
||||||
nexusAppId = "${groupId}-${artifactId}-${version}"
|
nexusAppId = "${groupId}-${artifactId}-${version}"
|
||||||
|
@ -36,6 +36,7 @@ import org.junit.After
|
|||||||
import org.junit.Assert.assertTrue
|
import org.junit.Assert.assertTrue
|
||||||
import org.junit.Assume
|
import org.junit.Assume
|
||||||
import org.junit.Before
|
import org.junit.Before
|
||||||
|
import org.junit.Ignore
|
||||||
import org.junit.Test
|
import org.junit.Test
|
||||||
import java.sql.SQLException
|
import java.sql.SQLException
|
||||||
import java.time.Duration
|
import java.time.Duration
|
||||||
@ -99,6 +100,7 @@ class RetryFlowMockTest {
|
|||||||
assertEquals(2, SendAndRetryFlow.count)
|
assertEquals(2, SendAndRetryFlow.count)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Ignore("CORDA-4045: Disable flaky test")
|
||||||
@Test(timeout=300_000)
|
@Test(timeout=300_000)
|
||||||
fun `Restart does not set senderUUID`() {
|
fun `Restart does not set senderUUID`() {
|
||||||
val messagesSent = Collections.synchronizedList(mutableListOf<Message>())
|
val messagesSent = Collections.synchronizedList(mutableListOf<Message>())
|
||||||
|
Loading…
Reference in New Issue
Block a user