From 5be7ab1c178252ac52b8af2e5b411a338244f36d Mon Sep 17 00:00:00 2001 From: kamuikatsurgi Date: Tue, 28 Jan 2025 18:36:00 +0530 Subject: [PATCH 1/2] use the consolidated script for e2e-tests --- .github/workflows/ci.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f1ec6f39c6..221a0f0956 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -236,15 +236,9 @@ jobs: - name: Launch devnet run: | cd matic-cli/devnet - bash docker-ganache-start.sh - bash docker-heimdall-start-all.sh - bash docker-bor-setup.sh - bash docker-bor-start-all.sh + chmod +x ../docker_devnet.sh && ../docker_devnet.sh cd - timeout 2m bash bor/integration-tests/bor_health.sh - cd - - bash ganache-deployment-bor.sh - bash ganache-deployment-sync.sh - name: Run smoke tests run: | From ab8112cf1b74b6eef593c5f4815a491e2fe22d83 Mon Sep 17 00:00:00 2001 From: kamuikatsurgi Date: Tue, 28 Jan 2025 23:09:56 +0530 Subject: [PATCH 2/2] minor nit --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 221a0f0956..f9a63f83f8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -236,7 +236,7 @@ jobs: - name: Launch devnet run: | cd matic-cli/devnet - chmod +x ../docker_devnet.sh && ../docker_devnet.sh + bash ../docker_devnet.sh cd - timeout 2m bash bor/integration-tests/bor_health.sh