From 9ef391397855b3dfddaf46ad2d401b7e4d92676c Mon Sep 17 00:00:00 2001 From: Rene Cannao Date: Thu, 26 Mar 2026 00:55:29 +0000 Subject: [PATCH] ci: add reusable workflows for legacy-g4 and legacy-clickhouse-g1 Adapted from ci-legacy-g2.yml: - ci-legacy-g4.yml: runs legacy-g4 TAP test group (mysql57 infra) - ci-legacy-clickhouse-g1.yml: runs legacy-clickhouse-g1 TAP tests (clickhouse23 infra) Both follow the same pattern: checkout, cache restore, build CI base image, start infrastructure, run tests via run-tests-isolated.bash, cleanup, upload artifacts on failure. --- .github/workflows/ci-legacy-clickhouse-g1.yml | 120 ++++++++++++++++++ .github/workflows/ci-legacy-g4.yml | 120 ++++++++++++++++++ 2 files changed, 240 insertions(+) create mode 100644 .github/workflows/ci-legacy-clickhouse-g1.yml create mode 100644 .github/workflows/ci-legacy-g4.yml diff --git a/.github/workflows/ci-legacy-clickhouse-g1.yml b/.github/workflows/ci-legacy-clickhouse-g1.yml new file mode 100644 index 000000000..00f1a7962 --- /dev/null +++ b/.github/workflows/ci-legacy-clickhouse-g1.yml @@ -0,0 +1,120 @@ +name: CI-legacy-clickhouse-g1 + +on: + workflow_dispatch: + workflow_call: + inputs: + trigger: + type: string + +env: + SHA: ${{ inputs.trigger && fromJson(inputs.trigger).event.workflow_run.head_sha || github.sha }} + +jobs: + tests: + runs-on: ubuntu-22.04 + strategy: + fail-fast: false + matrix: + infradb: [ 'clickhouse23' ] + env: + BLDCACHE: ${{ inputs.trigger && fromJson(inputs.trigger).event.workflow_run.head_sha || github.sha }}_ubuntu22-tap_src + MATRIX: '(${{ matrix.infradb }})' + + steps: + + - uses: LouisBrunner/checks-action@v2.0.0 + id: checks + if: always() + with: + token: ${{ secrets.GITHUB_TOKEN }} + name: '${{ github.workflow }} / ${{ github.job }} ${{ env.MATRIX }}' + repo: ${{ github.repository }} + sha: ${{ env.SHA }} + status: 'in_progress' + details_url: 'https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}' + + - name: Checkout repository + uses: actions/checkout@v4 + with: + repository: ${{ github.repository }} + ref: ${{ env.SHA }} + path: 'proxysql' + sparse-checkout: | + test/infra + test/tap/groups + test/scripts + + - name: Cache restore src + id: cache-src + uses: actions/cache/restore@v4 + with: + key: ${{ env.BLDCACHE }} + fail-on-cache-miss: true + path: | + proxysql/src/ + + - name: Cache restore test + id: cache-test + uses: actions/cache/restore@v4 + with: + key: ${{ inputs.trigger && fromJson(inputs.trigger).event.workflow_run.head_sha || github.sha }}_ubuntu22-tap_test + fail-on-cache-miss: true + path: | + proxysql/test/ + + - name: Verify binary + run: | + chmod +x proxysql/src/proxysql + file proxysql/src/proxysql + + - name: Build CI base image + run: | + cd proxysql/test/infra/docker-base + docker build -t proxysql-ci-base:latest . + + - name: Start infrastructure + run: | + cd proxysql + export INFRA_ID="ci-legacy-clickhouse-g1" + export TAP_GROUP="legacy-clickhouse-g1" + export SKIP_CLUSTER_START=1 + test/infra/control/ensure-infras.bash + + - name: Run legacy-clickhouse-g1 tests + run: | + cd proxysql + export INFRA_ID="ci-legacy-clickhouse-g1" + export TAP_GROUP="legacy-clickhouse-g1" + export SKIP_CLUSTER_START=1 + export TAP_USE_NOISE=1 + test/infra/control/run-tests-isolated.bash + + - name: Cleanup + if: always() + run: | + set +e + cd proxysql + export INFRA_ID="ci-legacy-clickhouse-g1" + export TAP_GROUP="legacy-clickhouse-g1" + docker logs proxysql.ci-legacy-clickhouse-g1 2>&1 | tail -50 || true + test/infra/control/stop-proxysql-isolated.bash + test/infra/control/destroy-infras.bash + + - name: Archive artifacts logs + if: ${{ failure() && !cancelled() }} + uses: actions/upload-artifact@v4 + with: + name: ${{ github.workflow }}-${{ env.SHA }}-logs-run#${{ github.run_number }} + path: | + proxysql/ci_*_logs/ + + - uses: LouisBrunner/checks-action@v2.0.0 + if: always() + with: + token: ${{ secrets.GITHUB_TOKEN }} + check_id: ${{ steps.checks.outputs.check_id }} + repo: ${{ github.repository }} + sha: ${{ env.SHA }} + conclusion: ${{ job.status }} + details_url: 'https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}' diff --git a/.github/workflows/ci-legacy-g4.yml b/.github/workflows/ci-legacy-g4.yml new file mode 100644 index 000000000..8a8c66cde --- /dev/null +++ b/.github/workflows/ci-legacy-g4.yml @@ -0,0 +1,120 @@ +name: CI-legacy-g4 + +on: + workflow_dispatch: + workflow_call: + inputs: + trigger: + type: string + +env: + SHA: ${{ inputs.trigger && fromJson(inputs.trigger).event.workflow_run.head_sha || github.sha }} + +jobs: + tests: + runs-on: ubuntu-22.04 + strategy: + fail-fast: false + matrix: + infradb: [ 'mysql57' ] + env: + BLDCACHE: ${{ inputs.trigger && fromJson(inputs.trigger).event.workflow_run.head_sha || github.sha }}_ubuntu22-tap_src + MATRIX: '(${{ matrix.infradb }})' + + steps: + + - uses: LouisBrunner/checks-action@v2.0.0 + id: checks + if: always() + with: + token: ${{ secrets.GITHUB_TOKEN }} + name: '${{ github.workflow }} / ${{ github.job }} ${{ env.MATRIX }}' + repo: ${{ github.repository }} + sha: ${{ env.SHA }} + status: 'in_progress' + details_url: 'https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}' + + - name: Checkout repository + uses: actions/checkout@v4 + with: + repository: ${{ github.repository }} + ref: ${{ env.SHA }} + path: 'proxysql' + sparse-checkout: | + test/infra + test/tap/groups + test/scripts + + - name: Cache restore src + id: cache-src + uses: actions/cache/restore@v4 + with: + key: ${{ env.BLDCACHE }} + fail-on-cache-miss: true + path: | + proxysql/src/ + + - name: Cache restore test + id: cache-test + uses: actions/cache/restore@v4 + with: + key: ${{ inputs.trigger && fromJson(inputs.trigger).event.workflow_run.head_sha || github.sha }}_ubuntu22-tap_test + fail-on-cache-miss: true + path: | + proxysql/test/ + + - name: Verify binary + run: | + chmod +x proxysql/src/proxysql + file proxysql/src/proxysql + + - name: Build CI base image + run: | + cd proxysql/test/infra/docker-base + docker build -t proxysql-ci-base:latest . + + - name: Start infrastructure + run: | + cd proxysql + export INFRA_ID="ci-legacy-g4" + export TAP_GROUP="legacy-g4" + export SKIP_CLUSTER_START=1 + test/infra/control/ensure-infras.bash + + - name: Run legacy-g4 tests + run: | + cd proxysql + export INFRA_ID="ci-legacy-g4" + export TAP_GROUP="legacy-g4" + export SKIP_CLUSTER_START=1 + export TAP_USE_NOISE=1 + test/infra/control/run-tests-isolated.bash + + - name: Cleanup + if: always() + run: | + set +e + cd proxysql + export INFRA_ID="ci-legacy-g4" + export TAP_GROUP="legacy-g4" + docker logs proxysql.ci-legacy-g4 2>&1 | tail -50 || true + test/infra/control/stop-proxysql-isolated.bash + test/infra/control/destroy-infras.bash + + - name: Archive artifacts logs + if: ${{ failure() && !cancelled() }} + uses: actions/upload-artifact@v4 + with: + name: ${{ github.workflow }}-${{ env.SHA }}-logs-run#${{ github.run_number }} + path: | + proxysql/ci_*_logs/ + + - uses: LouisBrunner/checks-action@v2.0.0 + if: always() + with: + token: ${{ secrets.GITHUB_TOKEN }} + check_id: ${{ steps.checks.outputs.check_id }} + repo: ${{ github.repository }} + sha: ${{ env.SHA }} + conclusion: ${{ job.status }} + details_url: 'https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}'