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

Use llvm12 when building containers #4894

Merged
merged 1 commit into from
Jan 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion .github/actions/build-container/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ inputs:
llvm_versions:
description: "Space separated list of llvm versions to install in the container. Only supported for Ubuntu containers."
type: string
default: "11"
default: "12"
registry:
description: "Registry where to push images"
default: ghcr.io
Expand Down
1 change: 1 addition & 0 deletions docker/build/Dockerfile.ubuntu
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ RUN /bin/bash -c 'apt-get update && apt-get install -y \
bridge-utils \
libtinfo5 \
libtinfo-dev \
libzstd-dev \
xz-utils \
zip && \
read -ra versions <<<"${LLVM_VERSION}" && \
Expand Down
Loading