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

CI: Migrate to Ubuntu 22.04 #447

Merged
merged 3 commits into from
Jul 31, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
docker to ubuntu 22.04
  • Loading branch information
maxknv committed Jul 22, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit c2abbc73e6126d684d89f4c9bfce6211b68e1fa3
2 changes: 1 addition & 1 deletion .github/workflows/Docker.yml
Original file line number Diff line number Diff line change
@@ -36,7 +36,7 @@ jobs:
- centos
# - ubuntu

runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

steps:

4 changes: 2 additions & 2 deletions test/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@ ARG ODBC_PROVIDER=unixodbc
# or centos
ARG BASE_OS=ubuntu

FROM ubuntu:20.04 as clickhouse_odbc_tester_base_ubuntu
FROM ubuntu:22.04 as clickhouse_odbc_tester_base_ubuntu

RUN apt-get update -y \
&& DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC \
@@ -239,4 +239,4 @@ EOF
ENTRYPOINT [ "/bin/bash", "-vx", "/entrypoint.sh" ]
CMD [ "-E", ".*-ut.*" ]

RUN chmod +x /entrypoint.sh
RUN chmod +x /entrypoint.sh
Loading