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

Commit

Permalink
CI: Build&Pack package with QUICSDK (#1056)
Browse files Browse the repository at this point in the history
  • Loading branch information
lijinxia authored Aug 10, 2021
1 parent f47b675 commit ff9cfd1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions test/server.jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ pipeline {
podTemplate(name: "pack-server-centos-"+env.GIT_BRANCH, label: "pack-server-centos-"+env.GIT_BRANCH,
volumes: [
persistentVolumeClaim(claimName: 'centos-package',mountPath: '/root/centos_package',readOnly: false),
persistentVolumeClaim(claimName: 'quicsdk',mountPath: '/root/quicsdk',readOnly: false),
persistentVolumeClaim(claimName: 'webrtc88',mountPath: '/root/owt-server/third_party/webrtc-m88',readOnly: false)
],
containers: [
Expand Down
5 changes: 3 additions & 2 deletions test/ubuntuserver.jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@ pipeline {
steps {
podTemplate(name: 'pack-server-ubuntu-'+env.GIT_BRANCH, label: 'pack-server-ubuntu-'+env.GIT_BRANCH,
volumes: [
persistentVolumeClaim(claimName: 'ubuntu-package',mountPath: '/root/ubuntu_package',readOnly: false),
persistentVolumeClaim(claimName: 'ubuntu-package',mountPath: '/root/ubuntu_package',readOnly: false),
persistentVolumeClaim(claimName: 'quicsdk',mountPath: '/root/quicsdk',readOnly: false),
persistentVolumeClaim(claimName: 'webrtc88ubuntu',mountPath: '/root/owt-server/third_party/webrtc-m88',readOnly: false)
],
],
containers: [
containerTemplate(name: 'build-images', image: "$env.ubuntu_build_images", ttyEnabled: true, alwaysPullImage: true, privileged: true, resourceRequestCpu: '5000m', resourceLimitCpu: '6000m' , command: 'cat')
]){
Expand Down

0 comments on commit ff9cfd1

Please sign in to comment.