Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
lucdion committed Jan 10, 2024
1 parent a07b82b commit d6573a8
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 46 deletions.
4 changes: 2 additions & 2 deletions Example/cocoapods/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PODS:
- FlexLayout (2.0.03)
- FlexLayout (2.0.04)
- PinLayout (1.10.5)
- SwiftLint (0.54.0)

Expand All @@ -18,7 +18,7 @@ EXTERNAL SOURCES:
:path: "../.."

SPEC CHECKSUMS:
FlexLayout: 30999df7d5e5b8878af1f9691313a92edad91e17
FlexLayout: 222177b4cd0c7e57b662ba05314a64c122958dac
PinLayout: f6c2b63a5a5b24864064e1d15c67de41b4e74748
SwiftLint: c1de071d9d08c8aba837545f6254315bc900e211

Expand Down
4 changes: 2 additions & 2 deletions Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PODS:
- FlexLayout (2.0.03)
- FlexLayout (2.0.04)
- PinLayout (1.10.5)
- SwiftLint (0.54.0)

Expand All @@ -18,7 +18,7 @@ EXTERNAL SOURCES:
:path: "./"

SPEC CHECKSUMS:
FlexLayout: 30999df7d5e5b8878af1f9691313a92edad91e17
FlexLayout: 222177b4cd0c7e57b662ba05314a64c122958dac
PinLayout: f6c2b63a5a5b24864064e1d15c67de41b4e74748
SwiftLint: c1de071d9d08c8aba837545f6254315bc900e211

Expand Down
84 changes: 42 additions & 42 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,52 +34,52 @@ platform :ios do
lane :build do
install

swiftlint(
mode: :lint,
config_file: ".swiftlint.yml",
executable: "Pods/SwiftLint/swiftlint",
ignore_exit_status: true
)

# FlexLayout
xcodebuild(
project: "FlexLayout.xcodeproj",
scheme: "FlexLayout",
configuration: "Release",
build: true,
clean: true,
destination: "platform=iOS Simulator,name=iPhone 15,OS=17.2"
)
# swiftlint(
# mode: :lint,
# config_file: ".swiftlint.yml",
# executable: "Pods/SwiftLint/swiftlint",
# ignore_exit_status: true
# )

# # FlexLayout
# xcodebuild(
# project: "FlexLayout.xcodeproj",
# scheme: "FlexLayout",
# configuration: "Release",
# build: true,
# clean: true,
# destination: "platform=iOS Simulator,name=iPhone 15,OS=17.2"
# )

# FlexLayoutSample from FlexLayout.xcworkspace
xcodebuild(
workspace: "FlexLayout.xcworkspace",
scheme: "FlexLayoutSample",
configuration: "Release",
build: true,
# clean: true,
destination: "platform=iOS Simulator,name=iPhone 15,OS=17.2"
)

# Example Cocoapods
xcodebuild(
workspace: "Example/cocoapods/FlexLayoutSample.xcworkspace",
scheme: "FlexLayoutSample",
configuration: "Release",
build: true,
# clean: true,
destination: "platform=iOS Simulator,name=iPhone 15,OS=17.2"
)
# xcodebuild(
# workspace: "FlexLayout.xcworkspace",
# scheme: "FlexLayoutSample",
# configuration: "Release",
# build: true,
# # clean: true,
# destination: "platform=iOS Simulator,name=iPhone 15,OS=17.2"
# )

# # Example Cocoapods
# xcodebuild(
# workspace: "Example/cocoapods/FlexLayoutSample.xcworkspace",
# scheme: "FlexLayoutSample",
# configuration: "Release",
# build: true,
# # clean: true,
# destination: "platform=iOS Simulator,name=iPhone 15,OS=17.2"
# )

# Example SPM (Swift Package Manager)
xcodebuild(
project: "Example/SPM/FlexLayoutSample-SPM.xcodeproj",
scheme: "FlexLayoutSample-SPM",
configuration: "Release",
build: true,
clean: true,
destination: "platform=iOS Simulator,name=iPhone 15,OS=17.2"
)
# xcodebuild(
# project: "Example/SPM/FlexLayoutSample-SPM.xcodeproj",
# scheme: "FlexLayoutSample-SPM",
# configuration: "Release",
# build: true,
# clean: true,
# destination: "platform=iOS Simulator,name=iPhone 15,OS=17.2"
# )
end

lane :tests do
Expand Down

0 comments on commit d6573a8

Please sign in to comment.