From 4dbf5dca7ab77deee734dd033a1e5350dfdc6764 Mon Sep 17 00:00:00 2001 From: Riccardo Cipolleschi Date: Fri, 11 Aug 2023 06:20:39 -0700 Subject: [PATCH] Remove StaticLibraries job of RNTester as they are duplicated Summary: Removing the `test_ios_rntester` jobs for the following config: - (OldArch, JSC, StaticLibraries) - (OldArch, Hermes, StaticLibraries) As this job just test that this configuration can be built and we have two other jobs (`test_ios-Hermes` and `test_ios-JSC`) which builds the same configs (so the test is duplicated) and they run unit and integration tests on top of these. bypass-github-export-checks ## Changelog: [Internal] - Remove duplicated `test_ios_rntester` jobs Reviewed By: cortinico Differential Revision: D48264664 fbshipit-source-id: 6dbf0edb9aba9ca8340b7c722b4f5c189c961577 --- .circleci/config.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index dc6000fb85b..f45df490d60 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -2170,6 +2170,15 @@ workflows: architecture: ["NewArch", "OldArch"] jsengine: ["Hermes", "JSC"] use_frameworks: ["StaticLibraries", "DynamicFrameworks"] + exclude: + # Tested by test_ios-Hermes + - architecture: "OldArch" + jsengine: "Hermes" + use_frameworks: "StaticLibraries" + # Tested by test_ios-JSC + - architecture: "OldArch" + jsengine: "JSC" + use_frameworks: "StaticLibraries" - test_ios: name: "Test iOS with Ruby 3.2.0" run_unit_tests: true