Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

22.3.12 Pre-release #199

Merged
merged 35 commits into from
Sep 23, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
f796d9c
Make builds and tests possible in Altinity's infrastructure
arthurpassos Apr 28, 2022
09087c6
Merge pull request #36944 from excitoon-favorites/better_exp_smooth
novikd Jun 7, 2022
6f77382
Merge pull request #34632 from excitoon-favorites/optimizedprocessing
novikd Jun 20, 2022
9f933a0
Merge pull request #37659 from frew/master
alesapin Jun 13, 2022
e336a8b
Merge pull request #37882 from excitoon-favorites/nodeleteobjects
rschu1ze Jul 12, 2022
a4fc3da
Disabled upstream's release workflow
Enmk Jul 14, 2022
797f3d3
Merge pull request #164 from Altinity/backport/22.3_36944_34632
arthurpassos Jul 15, 2022
62b215d
Merge pull request #180 from Enmk/ci_cd_bugfixes
Enmk Jul 15, 2022
7719068
Proper version with proper VERSION_REVISION
Enmk Jul 28, 2022
7b96c28
Merge pull request #182 from Enmk/version_and_revision_fix
Enmk Jul 29, 2022
c06ae64
Version 22.3.10.23.altinitystable
Enmk Aug 4, 2022
5d32a54
Removed dependecny on BuilderDebAarch64
Enmk Aug 4, 2022
75dfee0
Fixed using `column_after_join` for handling `WINDOW` expressions in …
quickhouse Jul 31, 2022
c076916
Fixed point of origin for exponential decay window functions to the l…
quickhouse Jul 26, 2022
99ff344
Fixed tests on Debug build type.
quickhouse Aug 4, 2022
eef3761
attempt to fix DockerServerImages
Enmk Aug 5, 2022
d83ed29
Revert "Merge pull request #39761 from ClickHouse/backport/22.3/39687"
Enmk Aug 10, 2022
569eb82
Revert "Merge pull request #27531 from abel-cheng/with-constants"
Enmk Aug 10, 2022
d912f2e
Merge pull request #193 from Altinity/reverted_encrypted_disk_fix
Enmk Aug 11, 2022
f44ba73
Merge pull request #194 from Enmk/revert_27531_constants_in_with
Enmk Aug 11, 2022
3242439
Merge pull request #189 from quickhouse/backportbetterorderbyoptimiza…
Enmk Aug 11, 2022
7c3e72f
Merge pull request #190 from quickhouse/backportfixexponentialdecaywi…
Enmk Aug 11, 2022
d5e1084
Merge pull request #188 from Altinity/customizations/22.3
Enmk Aug 16, 2022
f58a6d6
22.3.10.24-altinitystable
Enmk Aug 17, 2022
dd19699
TMP debug stuff
Enmk Aug 17, 2022
a8d58f8
TMP: Triggering on push to release branch
Enmk Aug 17, 2022
eb075cd
Changed the way builds are triggered
Enmk Aug 18, 2022
5e48b23
Fetch platform-specific docker image explicitly
Enmk Aug 19, 2022
6c394e2
Merge tag 'v22.3.10.24-altinitystable' into releases/22.3.12-prerelease
Enmk Sep 12, 2022
3176a7d
Fixed error reporting and database name for tests
Enmk Sep 13, 2022
17f7f3e
Staring workflow only on push to a branch
Enmk Sep 13, 2022
01a8f76
Merge pull request #202 from Enmk/fix_kafka_memory_leak
Enmk Sep 20, 2022
75ec5cb
Merge pull request #203 from Enmk/parquet_chunked_array
Enmk Sep 19, 2022
d80f7e0
Merge pull request #201 from Enmk/fix_unknown_columns
Enmk Sep 19, 2022
8a01991
Merge pull request #185 from Altinity/ci-enable-testflows-again-custo…
Enmk Sep 1, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
128 changes: 64 additions & 64 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,66 +1,66 @@
name: ReleaseWorkflow
# - Gets artifacts from S3
# - Sends it to JFROG Artifactory
# - Adds them to the release assets
# name: ReleaseWorkflow
# # - Gets artifacts from S3
# # - Sends it to JFROG Artifactory
# # - Adds them to the release assets

on: # yamllint disable-line rule:truthy
release:
types:
- published
# on: # yamllint disable-line rule:truthy
# release:
# types:
# - published

jobs:
ReleasePublish:
runs-on: [self-hosted, style-checker]
steps:
- name: Set envs
run: |
cat >> "$GITHUB_ENV" << 'EOF'
JFROG_API_KEY=${{ secrets.JFROG_KEY_API_PACKAGES }}
TEMP_PATH=${{runner.temp}}/release_packages
REPO_COPY=${{runner.temp}}/release_packages/ClickHouse
EOF
- name: Check out repository code
uses: actions/checkout@v2
with:
# Always use the most recent script version
ref: master
- name: Download packages and push to Artifactory
run: |
rm -rf "$TEMP_PATH" && mkdir -p "$TEMP_PATH"
cp -r "$GITHUB_WORKSPACE" "$TEMP_PATH"
cd "$REPO_COPY"
python3 ./tests/ci/push_to_artifactory.py --release "${{ github.ref }}" \
--commit '${{ github.sha }}' --all
- name: Upload packages to release assets
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ${{runner.temp}}/push_to_artifactory/*
overwrite: true
tag: ${{ github.ref }}
file_glob: true
############################################################################################
##################################### Docker images #######################################
############################################################################################
DockerServerImages:
runs-on: [self-hosted, style-checker]
steps:
- name: Clear repository
run: |
sudo rm -fr "$GITHUB_WORKSPACE" && mkdir "$GITHUB_WORKSPACE"
- name: Check out repository code
uses: actions/checkout@v2
with:
fetch-depth: 0 # otherwise we will have no version info
- name: Check docker clickhouse/clickhouse-server building
run: |
cd "$GITHUB_WORKSPACE/tests/ci"
python3 docker_server.py --release-type auto --version "${{ github.ref }}"
python3 docker_server.py --release-type auto --version "${{ github.ref }}" --no-ubuntu \
--image-repo clickhouse/clickhouse-keeper --image-path docker/keeper
- name: Cleanup
if: always()
run: |
docker kill "$(docker ps -q)" ||:
docker rm -f "$(docker ps -a -q)" ||:
sudo rm -fr "$TEMP_PATH"
# jobs:
# ReleasePublish:
# runs-on: [self-hosted, style-checker]
# steps:
# - name: Set envs
# run: |
# cat >> "$GITHUB_ENV" << 'EOF'
# JFROG_API_KEY=${{ secrets.JFROG_KEY_API_PACKAGES }}
# TEMP_PATH=${{runner.temp}}/release_packages
# REPO_COPY=${{runner.temp}}/release_packages/ClickHouse
# EOF
# - name: Check out repository code
# uses: actions/checkout@v2
# with:
# # Always use the most recent script version
# ref: master
# - name: Download packages and push to Artifactory
# run: |
# rm -rf "$TEMP_PATH" && mkdir -p "$TEMP_PATH"
# cp -r "$GITHUB_WORKSPACE" "$TEMP_PATH"
# cd "$REPO_COPY"
# python3 ./tests/ci/push_to_artifactory.py --release "${{ github.ref }}" \
# --commit '${{ github.sha }}' --all
# - name: Upload packages to release assets
# uses: svenstaro/upload-release-action@v2
# with:
# repo_token: ${{ secrets.GITHUB_TOKEN }}
# file: ${{runner.temp}}/push_to_artifactory/*
# overwrite: true
# tag: ${{ github.ref }}
# file_glob: true
# ############################################################################################
# ##################################### Docker images #######################################
# ############################################################################################
# DockerServerImages:
# runs-on: [self-hosted, style-checker]
# steps:
# - name: Clear repository
# run: |
# sudo rm -fr "$GITHUB_WORKSPACE" && mkdir "$GITHUB_WORKSPACE"
# - name: Check out repository code
# uses: actions/checkout@v2
# with:
# fetch-depth: 0 # otherwise we will have no version info
# - name: Check docker clickhouse/clickhouse-server building
# run: |
# cd "$GITHUB_WORKSPACE/tests/ci"
# python3 docker_server.py --release-type auto --version "${{ github.ref }}"
# python3 docker_server.py --release-type auto --version "${{ github.ref }}" --no-ubuntu \
# --image-repo clickhouse/clickhouse-keeper --image-path docker/keeper
# - name: Cleanup
# if: always()
# run: |
# docker kill "$(docker ps -q)" ||:
# docker rm -f "$(docker ps -a -q)" ||:
# sudo rm -fr "$TEMP_PATH"
Loading