openvidu-test-e2e: fake audio

pull/255/head
pabloFuente 2019-02-25 15:19:04 +01:00
parent b3eb140150
commit b3f61dfe9d
4 changed files with 3 additions and 0 deletions

View File

@ -44,6 +44,7 @@ RUN rm -rf /var/lib/apt/lists/*
RUN apt-get autoremove --purge -y
COPY barcode.y4m /opt/openvidu/barcode.y4m
COPY fakeaudio.wav /opt/openvidu/fakeaudio.wav
COPY entrypoint.sh /entrypoint.sh
RUN ["chmod", "+x", "/entrypoint.sh"]

Binary file not shown.

View File

@ -44,6 +44,7 @@ RUN rm -rf /var/lib/apt/lists/*
RUN apt-get autoremove --purge -y
COPY barcode.y4m /opt/openvidu/barcode.y4m
COPY fakeaudio.wav /opt/openvidu/fakeaudio.wav
COPY entrypoint.sh /entrypoint.sh
RUN ["chmod", "+x", "/entrypoint.sh"]

View File

@ -3,6 +3,7 @@ node('container') {
docker.image('selenium/standalone-firefox-debug:latest').pull()
docker.image('selenium/standalone-chrome-debug:latest').withRun('-p 4444:4444 -p 5900:5900 --shm-size=1g -v /opt/openvidu:/opt/openvidu') { c ->
sh 'rm -rf /opt/openvidu/barcode.* && wget https://github.com/OpenVidu/openvidu/raw/master/openvidu-test-e2e/docker/barcode.y4m -P /opt/openvidu'
sh 'rm -rf /opt/openvidu/fakeaudio.* && wget https://github.com/OpenVidu/openvidu/raw/master/openvidu-test-e2e/docker/fakeaudio.wav -P /opt/openvidu'
docker.image('selenium/standalone-firefox-debug:latest').withRun('-p 4445:4444 -p 5901:5900 --shm-size=1g') { d ->
def mycontainer = docker.image('openvidu/openvidu-test-e2e:$DISTRO')
mycontainer.pull()