-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added docker test builds for 14,17,18, checked all docker builds from…
… 11 to 18 and for arch linux, updated readme
- Loading branch information
1 parent
b4bc2e5
commit d55b4b1
Showing
6 changed files
with
72 additions
and
54 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
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
FROM debian:bullseye-slim | ||
|
||
RUN apt update && apt upgrade -y | ||
RUN apt install -y wget cmake git lsb-release software-properties-common gnupg2 | ||
RUN wget apt.llvm.org/llvm.sh && chmod +x ./llvm.sh && ./llvm.sh 14 | ||
RUN apt install -y llvm-14-dev libclang-common-14-dev libclang-14-dev clang-14 | ||
|
||
RUN git clone https://github.com/bloodstalker/cgrep \ | ||
&& cd cgrep \ | ||
&& git submodule init \ | ||
&& git submodule update \ | ||
&& mkdir build \ | ||
&& cd build \ | ||
&& cmake ../ -DLLVM_CONF=llvm-config-14 -DCMAKE_CXX_COMPILER=clang++-14 -DUSE_MONOLITH_LIBTOOLING=OFF\ | ||
&& make | ||
|
||
RUN rm -rf /var/apt/cache |
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,18 +1,17 @@ | ||
FROM debian:bullseye-slim | ||
|
||
ENV HTTPS_PROXY=socks5h://192.168.1.214:9995 | ||
RUN apt update && apt upgrade -y | ||
RUN apt install -y wget cmake git lsb-release software-properties-common gnupg2 | ||
RUN wget https://apt.llvm.org/llvm.sh && chmod +x ./llvm.sh && ./llvm.sh 16 | ||
RUN apt install -y llvm-16-dev libclang-common-16-dev libclang-16-dev clang-16 | ||
RUN apt install -y llvm-16-dev libclang-common-16-dev libclang-16-dev clang-16 libclang-cpp16-dev | ||
|
||
RUN git clone https://github.com/bloodstalker/cgrep \ | ||
&& cd cgrep \ | ||
&& git submodule init \ | ||
&& git submodule update \ | ||
&& mkdir build \ | ||
&& cd build \ | ||
&& cmake ../ -DLLVM_CONF=llvm-config-16 -DCMAKE_CXX_COMPILER=clang++-16 -DUSE_MONOLITH_LIBTOOLING=OFF\ | ||
&& cmake ../ -DLLVM_CONF=llvm-config-16 -DCMAKE_CXX_COMPILER=clang++-16 -DUSE_MONOLITH_LIBTOOLING=ON\ | ||
&& make | ||
|
||
RUN rm -rf /var/apt/cache |
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
FROM debian:bullseye-slim | ||
|
||
RUN apt update && apt upgrade -y | ||
RUN apt install -y wget cmake git lsb-release software-properties-common gpg | ||
RUN wget https://apt.llvm.org/llvm.sh && chmod +x ./llvm.sh && ./llvm.sh 17 | ||
RUN apt install -y llvm-17-dev libclang-common-17-dev libclang-17-dev clang-17 libclang-cpp17-dev | ||
|
||
RUN git clone https://github.com/bloodstalker/cgrep \ | ||
&& cd cgrep \ | ||
&& git submodule init \ | ||
&& git submodule update \ | ||
&& mkdir build \ | ||
&& cd build \ | ||
&& cmake ../ -DLLVM_CONF=llvm-config-17 -DCMAKE_CXX_COMPILER=clang++-17 -DUSE_MONOLITH_LIBTOOLING=ON\ | ||
&& make | ||
|
||
RUN rm -rf /var/apt/cache |
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
FROM debian:bullseye-slim | ||
|
||
RUN apt update && apt upgrade -y | ||
RUN apt install -y wget cmake git lsb-release software-properties-common gnupg2 | ||
RUN wget https://apt.llvm.org/llvm.sh && chmod +x ./llvm.sh && ./llvm.sh 18 | ||
RUN apt install -y llvm-18-dev libclang-common-18-dev libclang-18-dev clang-18 libclang-cpp18-dev | ||
|
||
RUN git clone https://github.com/bloodstalker/cgrep \ | ||
&& cd cgrep \ | ||
&& git submodule init \ | ||
&& git submodule update \ | ||
&& mkdir build \ | ||
&& cd build \ | ||
&& cmake ../ -DLLVM_CONF=llvm-config-18 -DCMAKE_CXX_COMPILER=clang++-18 -DUSE_MONOLITH_LIBTOOLING=ON\ | ||
&& make | ||
|
||
RUN rm -rf /var/apt/cache |
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