Skip to content

Commit

Permalink
Remove extra steps
Browse files Browse the repository at this point in the history
  • Loading branch information
justinpersaud committed Feb 26, 2025
1 parent f912722 commit f3c8ab7
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions .github/workflows/bedrock.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,20 +56,12 @@ jobs:
# For clang.
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
echo "deb [arch=amd64] https://travis:${{ secrets.TRAVIS_APT_PASSWORD }}@$APT_MIRROR_URL/mirror/apt.llvm.org/noble/ llvm-toolchain-noble-18 main" | sudo tee -a /etc/apt/sources.list.d/llvm-toolchain.list
# Remove libstdc++-12 and 14 which are installed by default
# Need to explicitly reinstall libstdc++-13-dev as well
sudo -E apt-get remove -yq libstdc++-14-dev libstdc++-12-dev
sudo -E apt-get install -y --reinstall libstdc++-13-dev
sudo apt-get update -y
sudo -E apt-get -yq --no-install-suggests --no-install-recommends --force-yes --reinstall install rsyslog cmake libpcre2-dev libsodium-dev libgpgme11-dev
sudo -E apt-get -yq --no-install-suggests --no-install-recommends --force-yes install rsyslog cmake libpcre2-dev libsodium-dev libgpgme11-dev
# Install clang.
sudo -E apt-get -yq --no-install-suggests --no-install-recommends --force-yes --reinstall install clang-18 lldb-18 lld-18 clangd-18 clang-tidy-18 clang-format-18 clang-tools-18 llvm-18-dev lld-18 lldb-18 llvm-18-tools libomp-18-dev libc++-18-dev libc++abi-18-dev libclang-common-18-dev libclang-18-dev libclang-cpp18-dev libunwind-18-dev
# These packages are not installed by default in the 24.04 GH image
sudo -E apt-get -yq --no-install-suggests --no-install-recommends --force-yes install libpcre3-dev
sudo -E apt-get -yq --no-install-suggests --no-install-recommends --force-yes install clang-18 lldb-18 lld-18 clangd-18 clang-tidy-18 clang-format-18 clang-tools-18 llvm-18-dev lld-18 lldb-18 llvm-18-tools libomp-18-dev libc++-18-dev libc++abi-18-dev libclang-common-18-dev libclang-18-dev libclang-cpp18-dev libunwind-18-dev
sudo locale-gen "en_US.UTF-8"
sudo service rsyslog start
Expand Down

0 comments on commit f3c8ab7

Please sign in to comment.