Beam/ci_scripts/ci_post_clone.sh
Doug 1178561853
Setup unit tests for Enterprise. (#2984)
* Fix Analytics on Enterprise.
2024-07-01 12:34:47 +01:00

17 lines
408 B
Bash
Executable File

#!/bin/sh
source ci_common.sh
setup_xcode_cloud_environment
install_xcode_cloud_brew_dependencies
if [ "$CI_WORKFLOW" = "Nightly" ]; then
bundle exec fastlane config_nightly build_number:"$CI_BUILD_NUMBER"
elif [ "$CI_WORKFLOW" = "Enterprise" ]; then
# Xcode Cloud automatically fetches the submodule.
bundle exec fastlane config_enterprise
else
bundle exec fastlane config_production
fi