diff --git a/ci/install-build-deps.sh b/ci/install-build-deps.sh index 30c967dd..6b9c82f5 100755 --- a/ci/install-build-deps.sh +++ b/ci/install-build-deps.sh @@ -2,14 +2,6 @@ set -ex -wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add - -sudo apt-add-repository "deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-10 main" -sudo apt-get update -sudo apt-get install -y clang-7 --allow-unauthenticated -sudo apt-get install -y openssl --allow-unauthenticated -sudo apt-get install -y libssl-dev --allow-unauthenticated -sudo apt-get install -y libssl1.1 --allow-unauthenticated -sudo apt-get install -y libudev-dev -sudo apt-get install -y binutils-dev -sudo apt-get install -y libunwind-dev -clang-7 --version +sudo apt install libudev-dev -y +sudo apt install binutils-dev -y +sudo apt install libunwind-dev -y diff --git a/ci/rust-version.sh b/ci/rust-version.sh index 631eefd4..370f018f 100644 --- a/ci/rust-version.sh +++ b/ci/rust-version.sh @@ -27,7 +27,6 @@ else nightly_version=2022-02-24 fi - export rust_stable="$stable_version" export rust_stable_docker_image=solanalabs/rust:"$stable_version"