diff --git a/.github/workflows/unit_tests_enterprise.yml b/.github/workflows/unit_tests_enterprise.yml index 02545643dd..5bbca39047 100644 --- a/.github/workflows/unit_tests_enterprise.yml +++ b/.github/workflows/unit_tests_enterprise.yml @@ -41,6 +41,10 @@ jobs: run: bundle exec fastlane config_enterprise env: MAPLIBRE_API_KEY: WeDontNeedOneForUnitTests + SENTRY_DSN: https://sentry.localhost + POSTHOG_HOST: ${{ secrets.POSTHOG_HOST_DEV }} + POSTHOG_API_KEY: ${{ secrets.POSTHOG_API_KEY_DEV }} + RAGESHAKE_SERVER_URL: https://rageshake.localhost - name: SwiftFormat run: swiftformat --lint . diff --git a/Secrets/Secrets.pkl b/Secrets/Secrets.pkl index 699aea99a6..76ed68d74c 100644 --- a/Secrets/Secrets.pkl +++ b/Secrets/Secrets.pkl @@ -8,8 +8,8 @@ // Analytics and Diagnostics sentryDSN = read("env:SENTRY_DSN") -postHogAPIKey = read("env:POSTHOG_API_KEY") postHogHost = read("env:POSTHOG_HOST") +postHogAPIKey = read("env:POSTHOG_API_KEY") rageshakeServerURL = read("env:RAGESHAKE_SERVER_URL") // Maps diff --git a/ci_scripts/ci_common.sh b/ci_scripts/ci_common.sh index 25a8d582ca..7bf07af311 100755 --- a/ci_scripts/ci_common.sh +++ b/ci_scripts/ci_common.sh @@ -30,14 +30,14 @@ setup_xcode_cloud_environment () { } install_xcode_cloud_brew_dependencies () { - brew update && brew install xcodegen pkl + brew update && brew install xcodegen swiftgen pkl } setup_github_actions_environment() { unset HOMEBREW_NO_INSTALL_FROM_API export HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1 - brew update && brew install xcodegen swiftlint swiftformat git-lfs pkl a7ex/homebrew-formulae/xcresultparser + brew update && brew install xcodegen swiftlint swiftformat swiftgen git-lfs pkl a7ex/homebrew-formulae/xcresultparser bundle config path vendor/bundle bundle install --jobs 4 --retry 3