From 4c7988c9cb6936d51c107ebda73621c90b4a67af Mon Sep 17 00:00:00 2001 From: "Scott Wittrock (Customer.io)" <153670820+scotttwittrockcio@users.noreply.github.com> Date: Wed, 30 Oct 2024 16:12:41 -0400 Subject: [PATCH] Add new build groups --- Apps/fastlane/helpers/build_helper.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Apps/fastlane/helpers/build_helper.rb b/Apps/fastlane/helpers/build_helper.rb index 7c6f5ab1..c91e9a6b 100644 --- a/Apps/fastlane/helpers/build_helper.rb +++ b/Apps/fastlane/helpers/build_helper.rb @@ -124,13 +124,15 @@ end lane :get_build_test_groups do - test_groups = ['all-builds'] # send all builds to group 'all-builds'. Therefore, set it here and we will not remove it. + test_groups = ['all-builds', 'feature-branch'] # send all builds to group 'all-builds'. Therefore, set it here and we will not remove it. github = GitHub.new() # To avoid giving potentially unstable builds of our sample apps to certain members of the organization, we only send builds to "stable" group uncertain certain situations. # If a commit is merged into main, it's considered stable because we deploy to production on merges to main. if github.is_commit_pushed && github.push_branch == "main" test_groups.append("stable-builds") + test_groups.append("next") + test_groups.append("public") # Push to public until we create a job that actually pulls from the deployed version of the sdk end test_groups = test_groups.join(", ")