mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
74 lines
2.9 KiB
YAML
74 lines
2.9 KiB
YAML
name: PublishedReleaseCI
|
|
# - Gets artifacts from S3
|
|
# - Sends it to JFROG Artifactory
|
|
# - Adds them to the release assets
|
|
|
|
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_ARTIFACTORY_API_KEY }}
|
|
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"
|
|
# Download and push packages to artifactory
|
|
python3 ./tests/ci/push_to_artifactory.py --release '${{ github.ref }}' \
|
|
--commit '${{ github.sha }}' --artifactory-url '${{ secrets.JFROG_ARTIFACTORY_URL }}' --all
|
|
# Download macos binaries to ${{runner.temp}}/download_binary
|
|
python3 ./tests/ci/download_binary.py --version '${{ github.ref }}' \
|
|
--commit '${{ github.sha }}' binary_darwin binary_darwin_aarch64
|
|
mv '${{runner.temp}}/download_binary/'clickhouse-* '${{runner.temp}}/push_to_artifactory'
|
|
- 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: |
|
|
# shellcheck disable=SC2046
|
|
docker kill $(docker ps -q) ||:
|
|
# shellcheck disable=SC2046
|
|
docker rm -f $(docker ps -a -q) ||:
|
|
sudo rm -fr "$TEMP_PATH"
|