Skip to content

Commit

Permalink
Redirecting the Source dir
Browse files Browse the repository at this point in the history
  • Loading branch information
kcw-grunt committed Dec 26, 2024
1 parent d2890ee commit a6085d2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit a6085d2

Please sign in to comment.