Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: haiku/infrastructure
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: a27b47545d83
Choose a base ref
...
head repository: haiku/infrastructure
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 4ae22a96b128
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Aug 5, 2021

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    4ae22a9 View commit details
Showing with 14 additions and 0 deletions.
  1. +14 −0 containers/general-worker/Dockerfile
14 changes: 14 additions & 0 deletions containers/general-worker/Dockerfile
Original file line number Diff line number Diff line change
@@ -20,6 +20,7 @@ RUN dnf install -y \
git \
glibc-devel \
glibc-devel.i686 \
jq \
libstdc++ \
libstdc++-static \
libstdc++-devel.x86_64 \
@@ -47,3 +48,16 @@ RUN dnf install -y \

ADD https://dl.min.io/client/mc/release/linux-amd64/mc /usr/local/bin/mc
RUN chmod 755 /usr/local/bin/mc

RUN ln -s /usr/bin/python3 /usr/bin/python

RUN git clone --depth 1 https://github.com/viveris/llvm-project.git &&\
cd llvm-project &&\
mkdir build &&\
cd build &&\
cmake -DCMAKE_BUILD_TYPE=MinSizeRel -DLLVM_ENABLE_PROJECTS=clang -G "Unix Makefiles" ../llvm &&\
make -j 2 clang-format &&\
cp ./bin/clang-format /usr/bin &&\
cp ../clang/tools/clang-format/git-clang-format /usr/bin &&\
cd ../../ &&\
rm -rf llvm-project/