-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
113 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
name: test_clickhouse_version | ||
|
||
run-name: ${{ github.workflow }}_${{ inputs.clickhouse_version }}_${{ inputs.id || github.run_number }} | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
clickhouse_version: | ||
description: 'ClickHouse version' | ||
required: true | ||
type: string | ||
id: | ||
description: 'Run identifier' | ||
required: false | ||
type: string | ||
default: "" | ||
|
||
jobs: | ||
test_integration: | ||
runs-on: ubuntu-latest | ||
env: | ||
CLICKHOUSE_VERSION: ${{ inputs.clickhouse_version }} | ||
CLICKHOUSE_VERSIONS: ${{ inputs.clickhouse_version }} | ||
NEED_SETUP: true | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Check the input tag to ${{ inputs.clickhouse_version }} | ||
continue-on-error: true | ||
run: | | ||
docker manifest inspect chtools/test-clickhouse:${{ inputs.clickhouse_version }} | ||
echo "NEED_SETUP=false" >> $GITHUB_ENV | ||
- name: login to dockerhub | ||
if: env.NEED_SETUP == 'true' | ||
uses: docker/login-action@v2 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
- name: build and push necessary images | ||
if: env.NEED_SETUP == 'true' | ||
uses: docker/bake-action@v3 | ||
with: | ||
files: tests/bake.hcl | ||
push: true | ||
- uses: ./.github/actions/setup_dependencies | ||
with: | ||
python-version: "3.11" | ||
- name: run integration tests | ||
run: make test-integration |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Feature: keeper-monitoring tool | ||
Feature: chadmin zookeeper commands. | ||
|
||
Background: | ||
Given default configuration | ||
|