Skip to content
This repository was archived by the owner on Oct 23, 2024. It is now read-only.

Commit 104a27f

Browse files
authored
Jenkins check-in test fix logs (#501)
1 parent c50ef9f commit 104a27f

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

test/server.jenkinsfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ pipeline {
5555
]) {
5656
node('api-server-centos-'+env.GIT_BRANCH) {
5757
container('test-images') {
58-
sh "/root/startRun.sh * * centos test ${env.GIT_COMMIT} ConferenceClient_API_1"
58+
sh "/root/startRun.sh * * centos test ${env.GIT_COMMIT} ConferenceClient_API_1 $env.GIT_BRANCH"
5959
}
6060
}
6161
}
@@ -74,7 +74,7 @@ pipeline {
7474
]) {
7575
node('rest-server-centos-'+env.GIT_BRANCH) {
7676
container('test-images') {
77-
sh "/root/startRun.sh * * centos test ${env.GIT_COMMIT} ConferenceClient_API_2"
77+
sh "/root/startRun.sh * * centos test ${env.GIT_COMMIT} ConferenceClient_API_2 $env.GIT_BRANCH"
7878
}
7979
}
8080
}
@@ -93,7 +93,7 @@ pipeline {
9393
success {
9494
script {
9595
if ("${GIT_BRANCH}" == 'master') {
96-
sh "curl ${env.checkServerUrl}/copyNightly/${GIT_COMMIT}/owt-server/1"
96+
sh "curl ${env.checkServerUrl}/copyNightly/0${GIT_COMMIT}/owt-server/1"
9797
}
9898
}
9999
setBuildStatus("Build succeeded", "SUCCESS");

test/ubuntuserver.jenkinsfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ pipeline {
5454
containerTemplate(name: 'test-images', image: "$env.ubuntu_test_images", ttyEnabled: true, alwaysPullImage: true, privileged: true, resourceRequestCpu: '3000m', resourceLimitCpu: '4000m', resourceRequestMemory: '2.0Gi', resourceLimitMemory: '3.0Gi', command: 'cat'), ]) {
5555
node('api-server-ubuntu-'+env.GIT_BRANCH) {
5656
container('test-images') {
57-
sh "/root/startRun.sh * * ubuntu test ${env.GIT_COMMIT} ConferenceClient_API_1"
57+
sh "/root/startRun.sh * * ubuntu test ${env.GIT_COMMIT} ConferenceClient_API_1 $env.GIT_BRANCH"
5858
}
5959
}
6060
}
@@ -73,7 +73,7 @@ pipeline {
7373
]) {
7474
node('rest-server-ubuntu-'+env.GIT_BRANCH) {
7575
container('test-images') {
76-
sh "/root/startRun.sh * * ubuntu test ${env.GIT_COMMIT} ConferenceClient_API_2"
76+
sh "/root/startRun.sh * * ubuntu test ${env.GIT_COMMIT} ConferenceClient_API_2 $env.GIT_BRANCH"
7777
}
7878
}
7979
}
@@ -95,7 +95,7 @@ pipeline {
9595
success {
9696
script {
9797
if ("${GIT_BRANCH}" == 'master') {
98-
sh "curl ${env.checkServerUrl}/copyNightly/${GIT_COMMIT}/owt-server/0"
98+
sh "curl ${env.checkServerUrl}/copyNightly/0${GIT_COMMIT}/owt-server/0"
9999
}
100100
}
101101
setBuildStatus("Build succeeded", "SUCCESS");

0 commit comments

Comments
 (0)