From 731768900147e6fafab6ce29f849767d576662a1 Mon Sep 17 00:00:00 2001 From: Matt Brictson Date: Mon, 28 Nov 2022 18:37:59 -0800 Subject: [PATCH] Fix failing Ruby 2.0 CI build (#2116) The following warning was preventing libssl from being installed, which is a prerequisite for the Ruby 2.0 build in CI: ``` WARNING: The following packages cannot be authenticated! libssl-dev libssl1.0.0 ``` Fix by passing `--force-yes` to ignore the warning. --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index b89db3ed..90f18127 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -40,7 +40,7 @@ commands: command: | if $(ssh -V 2>&1 | grep -q -v OpenSSH_8); then apt-get update - apt-get install -y libssl-dev + apt-get install -y --force-yes libssl-dev mkdir ~/tempdownload cd ~/tempdownload wget https://cdn.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-8.1p1.tar.gz