Skip to content

Commit

Permalink
[CI]Parallelize LLC tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ipavlidakis committed Nov 6, 2024
1 parent 6fe9f25 commit 67a8a9c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ buildcache_xcargs = 'CC=clang CPLUSPLUS=clang++ LD=clang LDPLUSPLUS=clang++'
gci = ENV['GOOGLE_CLIENT_ID'] || ''
reversed_gci = gci.split('.').reverse.join('.')
is_localhost = !is_ci
@force_check = false
@force_check = true
swift_environment_path = File.absolute_path('../Sources/StreamVideo/Generated/SystemEnvironment+Version.swift')
swiftformat_excluded_paths = ["**/Generated", "**/generated", "**/protobuf", "**/OpenApi"]
swiftformat_source_paths = ["Sources", "DemoApp", "DemoAppUIKit", "StreamVideoTests", "StreamVideoSwiftUITests", "StreamVideoUIKitTests"]
Expand Down Expand Up @@ -227,7 +227,8 @@ lane :test do |options|
number_of_retries: 3,
skip_build: options[:skip_build],
build_for_testing: options[:build_for_testing],
xcargs: is_ci ? "#{buildcache_xcargs} STREAM_VIDEO_SECRET=#{app_secret}" : buildcache_xcargs
xcargs: is_ci ? "#{buildcache_xcargs} STREAM_VIDEO_SECRET=#{app_secret}" : buildcache_xcargs,
parallel_testing: is_ci
}

begin
Expand Down

0 comments on commit 67a8a9c

Please sign in to comment.