From 889063a8b4d4380e3cdfb5836410159dfc48bcdf Mon Sep 17 00:00:00 2001 From: Rostislav Dugin Date: Sat, 14 Mar 2026 12:54:32 +0300 Subject: [PATCH] FIX (ci \ cd): Update e2e tests for agent to run on GitHub workers --- .github/workflows/ci-release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci-release.yml b/.github/workflows/ci-release.yml index 4807f99..e5eeeba 100644 --- a/.github/workflows/ci-release.yml +++ b/.github/workflows/ci-release.yml @@ -165,7 +165,7 @@ jobs: go test -count=1 -failfast ./internal/... e2e-agent: - runs-on: self-hosted + runs-on: ubuntu-latest needs: [lint-agent] steps: - name: Check out code @@ -183,6 +183,8 @@ jobs: docker compose down -v --rmi local || true rm -rf artifacts || true + # Self-hosted: performant high-frequency CPU is used to start many containers and run tests fast. Tests + # step is bottle-neck, because we need a lot of containers and cannot parallelize tests due to shared resources test-backend: runs-on: self-hosted needs: [lint-backend]