diff options
author | terminaldweller <thabogre@gmail.com> | 2021-09-29 14:03:38 +0000 |
---|---|---|
committer | terminaldweller <thabogre@gmail.com> | 2021-09-29 14:03:38 +0000 |
commit | 71b7d4f67963f806e8cf51a63173a53fbe8895fb (patch) | |
tree | e0185f09b4e2d328b58f1f3a583829799b1e5f04 /docker/arch | |
parent | Merge pull request #20 from schra/patch/llvm-conf (diff) | |
download | cgrep-71b7d4f67963f806e8cf51a63173a53fbe8895fb.tar.gz cgrep-71b7d4f67963f806e8cf51a63173a53fbe8895fb.zip |
removed coverity from travis
Diffstat (limited to 'docker/arch')
-rw-r--r-- | docker/arch/Dockerfile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/docker/arch/Dockerfile b/docker/arch/Dockerfile new file mode 100644 index 0000000..27f7b99 --- /dev/null +++ b/docker/arch/Dockerfile @@ -0,0 +1,15 @@ +FROM archlinux:base-devel-20210725.0.29770 + +RUN pacman -Syu --noconfirm +RUN pacman -S --noconfirm wget cmake git gnupg llvm-libs llvm openmp clang + +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 -DCMAKE_CXX_COMPILER=clang++ -DUSE_MONOLITH_LIBTOOLING=ON\ + && make + +RUN pacman -Scc |