From 29d3e10dc943564790f7f1e94a7df1003e1bd4e4 Mon Sep 17 00:00:00 2001 From: Ayke van Laethem Date: Thu, 30 Sep 2021 18:43:15 +0200 Subject: [PATCH] ci: fix wasmtime.dev expiry issue by upgrading some packages Hopefully this will fix the CI breakage after curl and wget refuse to download anything from wasmtime.dev (which is signed by Let's Encrypt). - wget needs and updated libgnutls30 - curl needs and updated libssl1.0.2 --- .circleci/config.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 5225152f3..8f924a423 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -137,6 +137,7 @@ commands: command: | sudo apt-get update sudo apt-get install \ + libgnutls30 libssl1.0.2 \ gcc-arm-linux-gnueabihf \ libc6-dev-armel-cross \ gcc-aarch64-linux-gnu \ @@ -205,6 +206,7 @@ commands: command: | sudo apt-get update sudo apt-get install \ + libgnutls30 libssl1.0.2 \ gcc-arm-linux-gnueabihf \ libc6-dev-armel-cross \ gcc-aarch64-linux-gnu \