-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #98 from bwrsandman/clang-tidy-16
Add clang-tidy 16
- Loading branch information
Showing
3 changed files
with
8 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,20 @@ | ||
FROM ubuntu:22.04 | ||
FROM ubuntu:23.04 | ||
|
||
RUN apt update && \ | ||
DEBIAN_FRONTEND=noninteractive \ | ||
apt-get install -y --no-install-recommends\ | ||
build-essential cmake git \ | ||
tzdata \ | ||
clang-tidy-11 \ | ||
clang-tidy-12 \ | ||
clang-tidy-13 \ | ||
clang-tidy-14 \ | ||
clang-tidy-15 \ | ||
clang-tidy-16 \ | ||
python3 \ | ||
python3-pip \ | ||
&& rm -rf /var/lib/apt/lists/ | ||
|
||
COPY . /clang_tidy_review/ | ||
|
||
RUN python3 -m pip install --upgrade pip && \ | ||
python3 -m pip install /clang_tidy_review/post/clang_tidy_review | ||
RUN python3 -m pip install --break-system-packages /clang_tidy_review/post/clang_tidy_review | ||
|
||
ENTRYPOINT ["review"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters