File tree 2 files changed +13
-1
lines changed
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
2
2
// The swift-tools-version declares the minimum version of Swift required to build this package.
3
3
4
4
import PackageDescription
Original file line number Diff line number Diff line change @@ -261,7 +261,19 @@ cocoapods-lint-other-subspecs)
261
261
262
262
carthage|all)
263
263
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
264
272
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
+
265
277
success=" 1"
266
278
;;
267
279
You can’t perform that action at this time.
0 commit comments