From 010b2ec4eb40df0e97997575f35dc696fb2d980f Mon Sep 17 00:00:00 2001 From: mkorwel Date: Fri, 17 Apr 2026 04:00:14 +0000 Subject: [PATCH] ci: add batch 2 tests as a separate job --- .github/workflows/ci-bundling-trial.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/workflows/ci-bundling-trial.yml b/.github/workflows/ci-bundling-trial.yml index b119054b80..4b4c8c0240 100644 --- a/.github/workflows/ci-bundling-trial.yml +++ b/.github/workflows/ci-bundling-trial.yml @@ -41,3 +41,19 @@ jobs: - name: 'Run Batch 1 Tests' run: 'npx vitest run --pool=threads packages/cli/src/test-utils packages/cli/src/utils' shell: 'bash' + + test_batch_2: + name: 'Test (Linux) - Batch 2 (Core & Services & ACP)' + runs-on: 'gemini-cli-ubuntu-16-core' + steps: + - name: 'Checkout' + uses: 'actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8' + + - name: 'Setup and Build' + uses: './.github/actions/setup-gemini' + with: + mode: 'source' + + - name: 'Run Batch 2 Tests' + run: 'npx vitest run --pool=threads packages/cli/src/core packages/cli/src/services packages/cli/src/acp' + shell: 'bash'