From 07ba255beba72629e642bed1ee90931e495538e0 Mon Sep 17 00:00:00 2001 From: juancarmore Date: Mon, 9 Dec 2024 19:04:05 +0100 Subject: [PATCH] Update integration tests workflow to use "development" branch when checking out openvidu-local-deployment and install LiveKit CLI --- .github/workflows/openvidu-integration-tests.yml | 5 +++++ .../tests/openvidu-active-entities-fixer.test.ts | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/openvidu-integration-tests.yml b/.github/workflows/openvidu-integration-tests.yml index 22cde32e72..77c0207634 100644 --- a/.github/workflows/openvidu-integration-tests.yml +++ b/.github/workflows/openvidu-integration-tests.yml @@ -18,6 +18,7 @@ jobs: uses: actions/checkout@v4 with: repository: OpenVidu/openvidu-local-deployment + ref: development path: openvidu-local-deployment - name: Configure OpenVidu Local Deployment @@ -28,6 +29,10 @@ jobs: sed -i '/interval: 1s/a \ fixer_interval: 10s' livekit.yaml docker compose pull + - name: Install LiveKit CLI + run: | + curl -sSL https://get.livekit.io/cli | bash + - name: Checkout current repository uses: actions/checkout@v4 with: diff --git a/openvidu-test-integration/tests/openvidu-active-entities-fixer.test.ts b/openvidu-test-integration/tests/openvidu-active-entities-fixer.test.ts index b4690c5316..9d35a58f07 100644 --- a/openvidu-test-integration/tests/openvidu-active-entities-fixer.test.ts +++ b/openvidu-test-integration/tests/openvidu-active-entities-fixer.test.ts @@ -15,7 +15,7 @@ describe("OpenVidu active entities fixer", () => { beforeEach(async () => { await startLocalDeployment(); - }, 120000); // 2 minute + }, 60000); // 1 minute afterEach(() => { stopLocalDeployment();