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

Commit e7695b5

Browse files
authored
webrtc79 update (#463)
1 parent 44c5243 commit e7695b5

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

test/server.jenkinsfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ pipeline {
2121
podTemplate(name: 'pack-server', label: 'pack-mcu-server',
2222
volumes: [
2323
persistentVolumeClaim(claimName: 'stability-package',mountPath: '/root/stabilityPackage',readOnly: false),
24-
persistentVolumeClaim(claimName: 'centos-package',mountPath: '/root/centos_package',readOnly: false)
24+
persistentVolumeClaim(claimName: 'centos-package',mountPath: '/root/centos_package',readOnly: false),
25+
persistentVolumeClaim(claimName: 'webrtc79',mountPath: '/root/owt-server/third_party/webrtc-m79',readOnly: false)
2526
],
2627
containers: [
2728
containerTemplate(name: 'pack-on-centos-server', image: "$env.centos_build_images", ttyEnabled: true, alwaysPullImage: true, privileged: true, resourceRequestCpu: '5000m', resourceLimitCpu: '6000m', network: 'host', command: 'cat')
@@ -39,7 +40,7 @@ pipeline {
3940
options { timeout(time:40,unit:'MINUTES') }
4041
when {
4142
expression {
42-
currentBuild.result == null || currentBuild.result == 'SUCCESS'
43+
currentBuild.result == null || currentBuild.result == 'SUCCESS'
4344
}
4445
}
4546
parallel {

test/ubuntuserver.jenkinsfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ pipeline {
2121
podTemplate(name: 'pack-server-ubuntu', label: 'pack-mcu-server-ubuntu',
2222
volumes: [
2323
persistentVolumeClaim(claimName: 'stability-package',mountPath: '/root/stabilityPackage',readOnly: false),
24-
persistentVolumeClaim(claimName: 'ubuntu-package',mountPath: '/root/ubuntu_package',readOnly: false)
24+
persistentVolumeClaim(claimName: 'ubuntu-package',mountPath: '/root/ubuntu_package',readOnly: false),
25+
persistentVolumeClaim(claimName: 'webrtc79ubuntu',mountPath: '/root/owt-server/third_party/webrtc-m79',readOnly: false)
2526
],
2627
containers: [
2728
containerTemplate(name: 'pack-on-ubuntu-server', image: "$env.ubuntu_build_images", ttyEnabled: true, alwaysPullImage: true, privileged: true, resourceRequestCpu: '5000m', resourceLimitCpu: '6000m', network: 'host', command: 'cat')
@@ -39,7 +40,7 @@ pipeline {
3940
options { timeout(time:40,unit:'MINUTES') }
4041
when {
4142
expression {
42-
currentBuild.result == null || currentBuild.result == 'SUCCESS'
43+
currentBuild.result == null || currentBuild.result == 'SUCCESS'
4344
}
4445
}
4546
parallel {

0 commit comments

Comments
 (0)