From e1e22d1d8f96407ddd59459ec0ed794290b9f774 Mon Sep 17 00:00:00 2001 From: Andrey Kholmogorov Date: Mon, 25 Sep 2023 15:17:50 +0200 Subject: [PATCH] Add external run action test-integration --- .../workflows/ext_run_test_integration.yml | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/workflows/ext_run_test_integration.yml diff --git a/.github/workflows/ext_run_test_integration.yml b/.github/workflows/ext_run_test_integration.yml new file mode 100644 index 00000000..0b987ab0 --- /dev/null +++ b/.github/workflows/ext_run_test_integration.yml @@ -0,0 +1,33 @@ +name: external_run_test-integration + +run-name: ${{ inputs.prefix }}_${{github.workflow}}_${{ inputs.uuid }} + +on: + workflow_dispatch: + inputs: + prefix: + description: 'Prefix runtime workflow' + required: false + type: string + default: "" + uuid: + description: 'UUID that can correct understand start' + required: false + type: string + default: "" + clickhouse_version: + description: 'Clickhouse version' + required: true + type: string + +jobs: + test_integration: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: set up python + uses: actions/setup-python@v4 + with: + python-version: "3.11" + - name: run integration tests + run: CLICKHOUSE_VERSION=${{ inputs.clickhouse_version }} make test-integration