From e6c87455760738620ffd36fbadd4e4137324633e Mon Sep 17 00:00:00 2001 From: bradh352 Date: Mon, 1 Nov 2021 14:15:27 -0400 Subject: [PATCH] try another path --- .cirrus.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.cirrus.yml b/.cirrus.yml index 9e16cc95..94a99124 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -94,7 +94,7 @@ task: case "${DIST}" in DEBIAN*) apt-get update && \ - apt-get install -y cmake ninja-build autoconf automake libtool g++ + apt-get install -y cmake ninja-build autoconf automake libtool g++ pip case "${BUILD_TYPE}" in asan|lsan|ubsan) apt-get install -y clang @@ -106,7 +106,7 @@ task: apt-get install -y valgrind ;; coverage) - python3 -m pip install --user cpp-coveralls + pip3 install --user cpp-coveralls ;; esac ;;