Skip to content

Commit

Permalink
add ubuntu 24
Browse files Browse the repository at this point in the history
  • Loading branch information
tgymnich committed Aug 15, 2024
1 parent f308b3a commit af473de
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
12 changes: 12 additions & 0 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,18 @@ jobs:
llvm: 11
- ubuntu: 22
llvm: 12
- ubuntu: 24
llvm: 11
- ubuntu: 24
llvm: 12
- ubuntu: 24
llvm: 13
- ubuntu: 24
llvm: 14
- ubuntu: 24
llvm: 15
- ubuntu: 24
llvm: 16
permissions:
packages: write
contents: read
Expand Down
6 changes: 5 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@ RUN apt-get -q update \
&& apt-add-repository "deb http://apt.llvm.org/`lsb_release -cs`/ llvm-toolchain-`lsb_release -cs`-$LLVM_VERSION main" \
&& apt-get -q update \
&& apt-get install -y --no-install-recommends sudo git ssh zlib1g-dev libzstd-dev automake autoconf cmake make lldb ninja-build gcc g++ gfortran build-essential libtool llvm-$LLVM_VERSION-dev clang-format clangd clang-$LLVM_VERSION libclang-$LLVM_VERSION-dev libomp-$LLVM_VERSION-dev libblas-dev libeigen3-dev libboost-dev python3 python3-pip \
&& python3 -m pip install --upgrade pip lit pathlib2 \
if [ "$UBUNTU_VERSION" == "22.04" ] ; then \
python3 -m pip install --break-system-packages lit pathlib2 \
else \
python3 -m pip install lit pathlib2 \
fi \
&& groupadd --gid $USER_GID $USERNAME \
&& useradd -s /bin/bash --uid $USER_UID --gid $USER_GID -m $USERNAME \
&& echo $USERNAME ALL=\(root\) NOPASSWD:ALL > /etc/sudoers.d/$USERNAME \
Expand Down

0 comments on commit af473de

Please sign in to comment.