From 42dc8ddff4de1061751a4fa7e696c0d29de5fcbf Mon Sep 17 00:00:00 2001 From: Kevin Gozali Date: Fri, 1 Oct 2021 17:00:23 -0700 Subject: [PATCH] OSS CircleCI: Unbreak analyze_pr cert issue (#32317) Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/32317 Context: https://github.com/nodesource/distributions/issues/1266#issuecomment-932583579 For now apply some workaround in analyze_pr docker image to unblock. Changelog: [Internal] Reviewed By: hramos Differential Revision: D31356337 fbshipit-source-id: 4c5ea57e6f94eeb53c8a12b736d7d178b2b9c6e6 --- .circleci/config.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 3f9543d9749..849c11663f6 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -223,9 +223,14 @@ jobs: # Note: The yarn gpg key needs to be refreshed to work around https://github.com/yarnpkg/yarn/issues/7866 - run: name: Install additional GitHub bot dependencies + # TEMP: Added workaround from https://github.com/nodesource/distributions/issues/1266#issuecomment-932583579 command: | curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - apt update && apt install -y shellcheck jq + apt-get install openssl ca-certificates + update-ca-certificates + curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - + apt update && apt install -y shellcheck jq - run: name: Run linters against modified files (analysis-bot)