Skip to content

Commit

Permalink
rpcdaemon: enable fuzzer build on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
JacekGlen committed Oct 15, 2023
1 parent 4b72543 commit efb92f7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,16 +56,16 @@ commands:
command: |
if [[ ! -f /etc/apt/trusted.gpg.d/apt.llvm.org.asc ]]; then
# download GPG key once
wget -qO- https://apt.llvm.org/llvm-snapshot.gpg.key | tee /etc/apt/trusted.gpg.d/apt.llvm.org.asc
sudo wget -qO- https://apt.llvm.org/llvm-snapshot.gpg.key | sudo tee /etc/apt/trusted.gpg.d/apt.llvm.org.asc
fi
if [[ -z "`apt-key list 2> /dev/null | grep -i llvm`" ]]; then
# Delete the key in the old format
apt-key del AF4F7421
sudo apt-key del AF4F7421
fi
add-apt-repository -y "${REPO_NAME}"
apt-get update
sudo add-apt-repository -y "${REPO_NAME}"
sudo apt-get update
# # sudo apt-get --allow-releaseinfo-change-suite update
# sudo apt update
Expand Down

0 comments on commit efb92f7

Please sign in to comment.