Skip to content

Commit

Permalink
ClickHouse 24.8 (#1385)
Browse files Browse the repository at this point in the history
* ClickHouse 24.8

* Run cloud & head tests on every usual PR event, but with a proper label
  • Loading branch information
jkaflik authored Aug 26, 2024
1 parent 4e11dd1 commit 5a3d28a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/run-tests-cloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ on:
branches:
- main
pull_request:
types: [labeled]
types: [opened, labeled, synchronize, reopened]

jobs:
cloud:
if: github.event.label.name == 'tests:run-cloud' || github.event_name == 'push'
if: github.event_name == 'push' || (github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'tests:run-cloud'))
runs-on: ubuntu-latest
defaults:
run:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/run-tests-head.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ on:
- cron: "0 0 * * *"
workflow_dispatch:
pull_request:
types: [labeled]
types: [opened, labeled, synchronize, reopened]

jobs:
test-ch-head:
if: github.event.label.name == 'tests:run-head' || github.event_name == 'push' || github.event_name == 'schedule'
if: github.event_name == 'workflow_dispatch' || github.event_name == 'schedule' || (github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'tests:run-head'))
runs-on: ubuntu-latest
strategy:
fail-fast: true
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,10 @@ jobs:
- "1.23"
- "1.22"
clickhouse: # https://github.com/ClickHouse/ClickHouse/blob/master/SECURITY.md#scope-and-supported-versions
- "24.8"
- "24.7"
- "24.6"
- "24.5"
- "24.3"
- "23.8"
steps:
- uses: actions/checkout@main

Expand Down

0 comments on commit 5a3d28a

Please sign in to comment.