Add building images to ReleaseCI

This commit is contained in:
Mikhail f. Shiryaev 2022-04-01 12:35:52 +02:00
parent 1078b1d31e
commit b49d94c9aa
No known key found for this signature in database
GPG Key ID: 4B02ED204C7D93F4

View File

@ -36,3 +36,28 @@ jobs:
overwrite: true overwrite: true
tag: ${{ github.ref }} tag: ${{ github.ref }}
file_glob: true 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
python3 docker_server.py --release-type auto --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"