From 8f7ffc4d5e4e498745e49826631b3abe2a4e4cd5 Mon Sep 17 00:00:00 2001 From: Riccardo Cipolleschi Date: Thu, 12 Oct 2023 03:31:32 -0700 Subject: [PATCH] Run all the tests when not on a PR Summary: ## Changelog: [Internal] - Run all the tests in CI when not on a PR Reviewed By: cortinico Differential Revision: D50220596 fbshipit-source-id: be1a30d713e9d427858cf22bd3ca9549ad513057 --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 91a15d50cf9..78a65d7877e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -73,9 +73,9 @@ jobs: command: | if [[ -z "$CIRCLE_PULL_REQUEST" ]]; then echo "Not in a PR. Can't filter properly outside a PR. Please open a PR so that we can run the proper CI tests." - echo "Skipping!" + echo "For safety, we run all the tests!" mkdir -p /tmp/circleci/ - echo '{}' > /tmp/circleci/pipeline_config.json + echo '{ "run_all": true }' > /tmp/circleci/pipeline_config.json else PR_NUMBER="${CIRCLE_PULL_REQUEST##*/}" node ./scripts/circleci/pipeline_selection.js filter-jobs