File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change 1- // swift-tools-version:5.2
1+ // swift-tools-version:5.3
22// The swift-tools-version declares the minimum version of Swift required to build this package.
33
44import PackageDescription
Original file line number Diff line number Diff line change @@ -261,7 +261,19 @@ cocoapods-lint-other-subspecs)
261261
262262carthage|all)
263263 echo " Verifying carthage works."
264+ # # carthage workaround to slip spm based project
265+ spm_example_project=" examples/ASIGListKitSPM/Sample.xcodeproj"
266+ carthge_example_project_workaround=" examples/ASIGListKitSPM/Sample.carthageSkip"
267+
268+ # apply workaround
269+ mv $spm_example_project $carthge_example_project_workaround
270+
271+ # carthage job
264272 set -o pipefail && carthage update && carthage build --no-skip-current
273+
274+ # revert back workaround
275+ mv $carthge_example_project_workaround $spm_example_project
276+
265277 success=" 1"
266278 ;;
267279
You can’t perform that action at this time.
0 commit comments