mirror of https://github.com/OpenVidu/openvidu.git
Update integration tests workflow to use "development" branch when checking out openvidu-local-deployment and install LiveKit CLI
parent
5e4cbadff1
commit
07ba255beb
|
@ -18,6 +18,7 @@ jobs:
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
repository: OpenVidu/openvidu-local-deployment
|
repository: OpenVidu/openvidu-local-deployment
|
||||||
|
ref: development
|
||||||
path: openvidu-local-deployment
|
path: openvidu-local-deployment
|
||||||
|
|
||||||
- name: Configure OpenVidu Local Deployment
|
- name: Configure OpenVidu Local Deployment
|
||||||
|
@ -28,6 +29,10 @@ jobs:
|
||||||
sed -i '/interval: 1s/a \ fixer_interval: 10s' livekit.yaml
|
sed -i '/interval: 1s/a \ fixer_interval: 10s' livekit.yaml
|
||||||
docker compose pull
|
docker compose pull
|
||||||
|
|
||||||
|
- name: Install LiveKit CLI
|
||||||
|
run: |
|
||||||
|
curl -sSL https://get.livekit.io/cli | bash
|
||||||
|
|
||||||
- name: Checkout current repository
|
- name: Checkout current repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
|
|
|
@ -15,7 +15,7 @@ describe("OpenVidu active entities fixer", () => {
|
||||||
|
|
||||||
beforeEach(async () => {
|
beforeEach(async () => {
|
||||||
await startLocalDeployment();
|
await startLocalDeployment();
|
||||||
}, 120000); // 2 minute
|
}, 60000); // 1 minute
|
||||||
|
|
||||||
afterEach(() => {
|
afterEach(() => {
|
||||||
stopLocalDeployment();
|
stopLocalDeployment();
|
||||||
|
|
Loading…
Reference in New Issue