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

[circle-mlir] Fix Dockerfile #14628

Merged
merged 2 commits into from
Feb 11, 2025
Merged
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
10 changes: 9 additions & 1 deletion circle-mlir/infra/docker/u2204/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,15 @@ RUN apt-get update \
# Build tool
RUN apt-get update \
&& apt-get -qqy install build-essential cmake git fakeroot autoconf automake libtool unzip wget \
devscripts debmake debhelper lcov clang-format-16
devscripts debmake debhelper lcov

# Install clang-format
RUN apt-get update \
&& apt-get install -qqy gnupg2 \
&& wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add - \
&& add-apt-repository "deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy-16 main" \
&& apt-get update \
&& apt-get install -qqy clang-format-16

# additonal tools
RUN apt-get update \
Expand Down