Skip to content

Commit

Permalink
Fix CI name issue
Browse files Browse the repository at this point in the history
  • Loading branch information
genzgd committed Sep 5, 2023
1 parent 86cdf77 commit 0a57e78
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/clickhouse_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,28 +31,28 @@ jobs:
run: docker run
-d
-p 8123:8123
--name clickhouse
--name clickhouse_head
-v /var/lib/clickhouse
-v ${{ github.workspace }}/tests/integration_tests/test_config.xml:/etc/clickhouse-server/conf.d/test_config.xml
--ulimit nofile=262144:262144
clickhouse/clickhouse-server:head
- name: Run HEAD tests
run: pytest tests/integration_tests
- name: stop local docker
run: docker stop clickhouse
run: docker stop clickhouse_head
- name: Run ClickHouse Container (LATEST)
run: docker run
-d
-p 8123:8123
--name clickhouse
--name clickhouse_latest
-v /var/lib/clickhouse
-v ${{ github.workspace }}/tests/integration_tests/test_config.xml:/etc/clickhouse-server/conf.d/test_config.xml
--ulimit nofile=262144:262144
clickhouse/clickhouse-server:latest
- name: Run LATEST tests
run: pytest tests/integration_tests
- name: stop local docker
run: docker stop clickhouse
run: docker stop clickhouse_latest
- name: run ClickHouse Cloud tests
env:
CLICKHOUSE_CONNECT_TEST_PORT: 8443
Expand Down

0 comments on commit 0a57e78

Please sign in to comment.