From a6085d2fa3fd15b613a999febb5a0eb90d67d405 Mon Sep 17 00:00:00 2001 From: kcw-grunt Date: Thu, 26 Dec 2024 17:59:03 +0000 Subject: [PATCH] Redirecting the Source dir --- .circleci/config.yml | 1 + fastlane/Fastfile | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index bb54c681..0cb495c0 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,6 +1,7 @@ # .circleci/config.yml # Use the latest 2.1 version of CircleCI pipeline process engine. # See: https://circleci.com/docs/2.0/configuration-reference +# Insoired by: https://medium.com/uptech-team/swift-package-manager-and-how-to-cache-it-with-ci-14968cd58c5f version: 2.1 orbs: macos: circleci/macos@2 diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 86d47c9a..39904efc 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -14,11 +14,11 @@ platform :ios do desc "Run all the unit tests" lane :all_unit_tests do - run_tests(clean: true, devices: ["iPhone 15"], scheme: "litewallet") + run_tests(clean: true, devices: ["iPhone 15"], scheme: "litewallet", cloned_source_packages_path: "SourcePackages") end desc "Build and Archive" lane :build_and_archive do - build_app(clean: true, scheme: "litewallet") + build_app(clean: true, scheme: "litewallet", cloned_source_packages_path: "SourcePackages") end end \ No newline at end of file