Skip to content

Commit

Permalink
Revert "ci: Disable LLVM 16 installation for AArch64 image"
Browse files Browse the repository at this point in the history
This reverts commit 9c8b9da because
the broken AArch64 packages in the LLVM APT repository have been fixed.

Signed-off-by: Stephanos Ioannidis <root@stephanos.io>
  • Loading branch information
stephanosio committed May 9, 2023
1 parent c1a7980 commit baa6647
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions Dockerfile.ci
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,10 @@ RUN mkdir -p /opt/bsim_west && \
RUN cargo install uefi-run --root /usr

# Install LLVM and Clang
# FIXME: AArch64 is disabled because the LLVM APT repository contains broken
# packages for it.
RUN if [ "${HOSTTYPE}" != "aarch64" ]; then \
wget ${WGET_ARGS} https://apt.llvm.org/llvm.sh && \
RUN wget ${WGET_ARGS} https://apt.llvm.org/llvm.sh && \
chmod +x llvm.sh && \
./llvm.sh ${LLVM_VERSION} all && \
rm -f llvm.sh \
; fi
rm -f llvm.sh

# Install sparse package for static analysis
RUN mkdir -p /opt/sparse && \
Expand Down

0 comments on commit baa6647

Please sign in to comment.