mirror of https://github.com/OpenVidu/openvidu.git
Jenkinsfile: update commonFunctions browser containers pull with specific versions
parent
de46b5ce4d
commit
e8c39c9242
|
@ -38,16 +38,32 @@ def prepareTestingEnvironment() {
|
|||
}
|
||||
},
|
||||
'Pull selenium/standalone-chrome': {
|
||||
if (env.CHROME_VERSION) {
|
||||
docker.image("selenium/standalone-chrome:${CHROME_VERSION}").pull()
|
||||
} else {
|
||||
docker.image('selenium/standalone-chrome:latest').pull()
|
||||
}
|
||||
},
|
||||
'Pull selenium/standalone-firefox': {
|
||||
if (env.FIREFOX_VERSION) {
|
||||
docker.image("selenium/standalone-firefox:${FIREFOX_VERSION}").pull()
|
||||
} else {
|
||||
docker.image('selenium/standalone-firefox:latest').pull()
|
||||
}
|
||||
},
|
||||
'Pull selenium/standalone-opera': {
|
||||
if (env.OPERA_VERSION) {
|
||||
docker.image("selenium/standalone-opera:${OPERA_VERSION}").pull()
|
||||
} else {
|
||||
docker.image('selenium/standalone-opera:latest').pull()
|
||||
}
|
||||
},
|
||||
'Pull selenium/standalone-edge': {
|
||||
if (env.EDGE_VERSION) {
|
||||
docker.image("selenium/standalone-edge:${EDGE_VERSION}").pull()
|
||||
} else {
|
||||
docker.image('selenium/standalone-edge:latest').pull()
|
||||
}
|
||||
},
|
||||
'Pull openvidu/mediasoup-controller': {
|
||||
if (env.MEDIASOUP_CONTROLLER_VERSION) {
|
||||
|
|
Loading…
Reference in New Issue