Skip to content

Commit

Permalink
Clang: jammy -> noble (#94)
Browse files Browse the repository at this point in the history
drop clang versions before 17
  • Loading branch information
havogt authored Jun 17, 2024
1 parent c00d140 commit 9e8bbc7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
needs: base
strategy:
matrix:
version: [13, 14, 15, 16, 17, 18]
version: [17, 18]
steps:
- uses: actions/checkout@v2
- name: Build
Expand Down
4 changes: 2 additions & 2 deletions clang/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ LABEL maintainer="Felix Thaler <thaler@cscs.ch>"
ARG CLANG_VERSION
ENV CLANG_VERSION ${CLANG_VERSION}

RUN echo "deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy-${CLANG_VERSION} main" >> /etc/apt/sources.list && \
echo "deb-src http://apt.llvm.org/jammy/ llvm-toolchain-jammy-${CLANG_VERSION} main" >> /etc/apt/sources.list && \
RUN echo "deb http://apt.llvm.org/noble/ llvm-toolchain-noble-${CLANG_VERSION} main" >> /etc/apt/sources.list && \
echo "deb-src http://apt.llvm.org/noble/ llvm-toolchain-noble-${CLANG_VERSION} main" >> /etc/apt/sources.list && \
wget -qO- https://apt.llvm.org/llvm-snapshot.gpg.key | tee /etc/apt/trusted.gpg.d/apt.llvm.org.asc && \
apt-get update -qq && \
DEBIAN_FRONTEND=noninteractive apt-get install -qq -y clang-${CLANG_VERSION} libomp-${CLANG_VERSION}-dev && \
Expand Down

0 comments on commit 9e8bbc7

Please sign in to comment.