Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 210715eb authored by Thierry Martinez's avatar Thierry Martinez
Browse files

bootstrapped repository for commit 4e16df9a

parent f66004db
No related branches found
No related tags found
No related merge requests found
Pipeline #782378 failed
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
FROM debian
ENV DEBIAN_FRONTEND=noninteractive
COPY prepare-system.sh .
RUN sh prepare-system.sh
USER ci
WORKDIR /home/ci
RUN git clone https://github.com/llvm/llvm-project.git
COPY compile-clang.sh .
RUN sh compile-clang.sh
COPY install-clang.sh .
RUN sh install-clang.sh
set -ex
cd llvm-project
git checkout llvmorg-16.0.0-rc3
cmake -S llvm -B build -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug -DLLVM_ENABLE_PROJECTS="clang"
cmake --build build
set -ex
cd llvm-project/build
cmake -DCMAKE_INSTALL_PREFIX=$HOME/llvm -P cmake_install.cmake
set -ex
tee /etc/apt/apt.conf.d/90forceyes <<EOF
APT::Get::Assume-Yes "true";
EOF
apt-get update
apt-get install cmake git clang sudo
adduser --disabled-password --gecos ci ci
echo "ci ALL=(ALL) NOPASSWD:ALL" >/etc/sudoers
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment