You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
proxysql/.github/workflows/ci-basictests.yml

124 lines
3.5 KiB

name: CI-basictests
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:
testdist: [ 'ubuntu22-tap' ]
infradb: [ 'mysql57' ]
env:
TESTDIST: ${{ matrix.testdist }}
INFRADB: ${{ matrix.infradb }}
BLDCACHE: ${{ inputs.trigger && fromJson(inputs.trigger).event.workflow_run.head_sha || github.sha }}_${{ matrix.testdist }}_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: Verify binary
run: |
ls -la proxysql/src/proxysql
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-basictests"
export TAP_GROUP="basictests"
test/infra/control/ensure-infras.bash
- name: Run basic tests
run: |
cd proxysql
export INFRA_ID="ci-basictests"
export TAP_GROUP="basictests"
test/infra/control/run-tests-isolated.bash
- name: Cleanup
if: always()
run: |
set +e
cd proxysql
export INFRA_ID="ci-basictests"
export TAP_GROUP="basictests"
# Dump ProxySQL logs on failure for debugging
docker logs proxysql.ci-basictests 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/
- name: Archive artifacts bin
if: ${{ failure() && !cancelled() }}
uses: actions/upload-artifact@v4
with:
name: ${{ github.workflow }}-${{ env.SHA }}-bin-run#${{ github.run_number }}
path: |
proxysql/binaries/
proxysql/src/
proxysql/libs/
- 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 }}'