diff options
author | Lukas Zaoral <lzaoral@redhat.com> | 2021-05-11 12:03:29 +0200 |
---|---|---|
committer | MartinNowack <2443641+MartinNowack@users.noreply.github.com> | 2021-09-10 15:14:56 +0100 |
commit | f61db845d73d07261950dbd37cf7935bcac6acb7 (patch) | |
tree | 860762b4c59f191caa20b0485559b7e88fa25979 /scripts/build/p-klee-linux-ubuntu.inc | |
parent | ffe79ef2299ffa2667848003f0e4de2d6bb06a5f (diff) | |
download | klee-f61db845d73d07261950dbd37cf7935bcac6acb7.tar.gz |
CI: Use the latest release of CMake
Diffstat (limited to 'scripts/build/p-klee-linux-ubuntu.inc')
-rw-r--r-- | scripts/build/p-klee-linux-ubuntu.inc | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/scripts/build/p-klee-linux-ubuntu.inc b/scripts/build/p-klee-linux-ubuntu.inc index f5e6aed2..4967aa3c 100644 --- a/scripts/build/p-klee-linux-ubuntu.inc +++ b/scripts/build/p-klee-linux-ubuntu.inc @@ -1,6 +1,25 @@ install_build_dependencies_klee() { apt update -y + # Add Kitware's certificate for CMake + dependencies=( + apt-transport-https + ca-certificates + gnupg + lsb-release + software-properties-common + wget + ) + + apt -y --no-install-recommends install "${dependencies[@]}" + wget -O - "https://apt.kitware.com/keys/kitware-archive-latest.asc" 2> /dev/null \ + | gpg --dearmor - | tee /etc/apt/trusted.gpg.d/kitware.gpg > /dev/null + + # Add CMake repository + codename="$(lsb_release --codename --short)" + apt-add-repository "deb https://apt.kitware.com/ubuntu/ ${codename} main" + + # Install KLEE's dependencies dependencies=( build-essential gcc-multilib # to generate 32bit |